Files
XCEngine/editor/src/Core/SceneSnapshot.h

17 lines
252 B
C
Raw Normal View History

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