summaryrefslogtreecommitdiffstats
path: root/src/GlobalState.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/GlobalState.hpp')
-rw-r--r--src/GlobalState.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/GlobalState.hpp b/src/GlobalState.hpp
new file mode 100644
index 0000000..29ab7a0
--- /dev/null
+++ b/src/GlobalState.hpp
@@ -0,0 +1,14 @@
+#pragma once
+
+#include <memory>
+#include <thread>
+
+class NetworkClient;
+class GameState;
+class Render;
+
+struct GlobalState {
+ static GameState *GetGameState();
+ static Render *GetRender();
+ static void Exec();
+}; \ No newline at end of file