summaryrefslogtreecommitdiff
path: root/src/game.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.hpp')
-rw-r--r--src/game.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/game.hpp b/src/game.hpp
index d8e1833..b780b4a 100644
--- a/src/game.hpp
+++ b/src/game.hpp
@@ -7,6 +7,7 @@
#include "event.hpp"
#include "imgui.h"
#include "ecs.hpp"
+#include "window.hpp"
using GameTimeDuration = std::chrono::duration<int64_t, std::nano>;
using GameTimePoint = std::chrono::steady_clock::time_point;
@@ -22,6 +23,10 @@ struct GameSettings {
int64_t minFPS = 20;
double deltaPerFrame = 1 / double(targetFPS);
double minimumDeltaPerFrame = 1 / double(minFPS);
+ struct {
+ bool isShowingConsole = true;
+ bool isShowingEntityList = true;
+ } editorSettings;
};
extern GameSettings pkeSettings;