summaryrefslogtreecommitdiffstats
path: root/src/Game.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Game.hpp')
-rw-r--r--src/Game.hpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/Game.hpp b/src/Game.hpp
new file mode 100644
index 0000000..f7efd11
--- /dev/null
+++ b/src/Game.hpp
@@ -0,0 +1,30 @@
+#pragma once
+
+class GameState;
+class Render;
+class NetworkClient;
+class LoopExecutionTimeController;
+
+enum class State {
+ InitialLoading,
+ MainMenu,
+ Loading,
+ Playing,
+ Paused,
+ Inventory,
+ Chat,
+};
+
+void RunGame();
+
+State GetState();
+
+void SetState(State newState);
+
+GameState* GetGameState();
+
+Render* GetRender();
+
+NetworkClient* GetNetworkClient();
+
+LoopExecutionTimeController *GetTime(); \ No newline at end of file