summaryrefslogtreecommitdiff
path: root/src/game.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.hpp')
-rw-r--r--src/game.hpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/game.hpp b/src/game.hpp
index b780b4a..c5c6f94 100644
--- a/src/game.hpp
+++ b/src/game.hpp
@@ -3,10 +3,13 @@
#include <chrono>
#include <cstdint>
+#include <fstream>
+#include "asset-manager.hpp"
+#include "ecs.hpp"
+#include "entities.hpp"
#include "event.hpp"
#include "imgui.h"
-#include "ecs.hpp"
#include "window.hpp"
using GameTimeDuration = std::chrono::duration<int64_t, std::nano>;
@@ -26,6 +29,7 @@ struct GameSettings {
struct {
bool isShowingConsole = true;
bool isShowingEntityList = true;
+ bool isShowingSceneEditor = true;
} editorSettings;
};