summaryrefslogtreecommitdiffstats
path: root/src/gamestate/GameState.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gamestate/GameState.hpp')
-rw-r--r--src/gamestate/GameState.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gamestate/GameState.hpp b/src/gamestate/GameState.hpp
index 3d7dc80..c9ca44a 100644
--- a/src/gamestate/GameState.hpp
+++ b/src/gamestate/GameState.hpp
@@ -2,12 +2,16 @@
#include "../world/World.hpp"
#include "../network/NetworkClient.hpp"
+#include "../packet/PacketParser.hpp"
+#include "../packet/PacketBuilder.hpp"
class GameState {
NetworkClient *nc;
public:
GameState(NetworkClient *NetClient);
+
World world;
+
void Update();
std::string g_PlayerUuid;