#pragma once #include "Project/Project.h" struct EditorContext { std::shared_ptr CurrentProject; Scene MainScene; EditorContext() = default; EditorContext(EditorContext& other) = default; ~EditorContext() = default; };