summaryrefslogtreecommitdiff
path: root/game/gamestate.h
diff options
context:
space:
mode:
Diffstat (limited to 'game/gamestate.h')
-rw-r--r--game/gamestate.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/game/gamestate.h b/game/gamestate.h
index b8dfa61..536c420 100644
--- a/game/gamestate.h
+++ b/game/gamestate.h
@@ -2,9 +2,11 @@
#define GAMESTATE_H
#include <collection.hpp>
+#include <memory>
#include <special_members.hpp>
class WorldObject;
+class GeoData;
class GameState {
public:
@@ -14,6 +16,7 @@ public:
NO_COPY(GameState);
Collection<WorldObject> world;
+ std::shared_ptr<GeoData> geoData;
};
extern GameState * gameState;