aboutsummaryrefslogtreecommitdiff
path: root/core/src/UI/States.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/UI/States.hpp')
-rw-r--r--core/src/UI/States.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/core/src/UI/States.hpp b/core/src/UI/States.hpp
new file mode 100644
index 0000000..d1c1faf
--- /dev/null
+++ b/core/src/UI/States.hpp
@@ -0,0 +1,14 @@
+#pragma once
+
+#include "cplt_fwd.hpp"
+
+#include <memory>
+
+class UIState {
+public:
+ static void Init();
+ static UIState& GetInstance();
+
+public:
+ std::unique_ptr<Project> CurrentProject;
+};