diff options
Diffstat (limited to '')
-rw-r--r-- | src/GlobalState.hpp | 14 |
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 |