#pragma once #include namespace XCEngine { namespace Editor { struct SceneSnapshot { bool hasScene = false; std::string sceneData; std::string scenePath; bool dirty = false; }; } // namespace Editor } // namespace XCEngine