diff options
author | LaG1924 <12997935+LaG1924@users.noreply.github.com> | 2019-01-27 06:10:33 +0100 |
---|---|---|
committer | LaG1924 <12997935+LaG1924@users.noreply.github.com> | 2019-01-27 06:10:33 +0100 |
commit | e2479261c56c8d1a64b51ad4f084ad3c18505359 (patch) | |
tree | 5256688eaec174cebdcf873f5247ece28ec45b9c /src/GlobalState.hpp | |
parent | Added slow GameState sync (diff) | |
download | AltCraft-e2479261c56c8d1a64b51ad4f084ad3c18505359.tar AltCraft-e2479261c56c8d1a64b51ad4f084ad3c18505359.tar.gz AltCraft-e2479261c56c8d1a64b51ad4f084ad3c18505359.tar.bz2 AltCraft-e2479261c56c8d1a64b51ad4f084ad3c18505359.tar.lz AltCraft-e2479261c56c8d1a64b51ad4f084ad3c18505359.tar.xz AltCraft-e2479261c56c8d1a64b51ad4f084ad3c18505359.tar.zst AltCraft-e2479261c56c8d1a64b51ad4f084ad3c18505359.zip |
Diffstat (limited to 'src/GlobalState.hpp')
-rw-r--r-- | src/GlobalState.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/GlobalState.hpp b/src/GlobalState.hpp index b3b4635..bc7224f 100644 --- a/src/GlobalState.hpp +++ b/src/GlobalState.hpp @@ -1,5 +1,7 @@ #pragma once +#include <memory> + class NetworkClient; class GameState; class Render; @@ -15,7 +17,7 @@ enum class State { }; struct GlobalState { - static GameState *GetGameState(); + static std::shared_ptr<GameState> GetGameState(); static Render *GetRender(); static void Exec(); static State GetState(); |