summaryrefslogtreecommitdiff
path: root/src/game.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.hpp')
-rw-r--r--src/game.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/game.hpp b/src/game.hpp
index e0ebb9ea..03db8a45 100644
--- a/src/game.hpp
+++ b/src/game.hpp
@@ -1,12 +1,19 @@
#pragma once
#include "game_fwd.hpp"
+#include "grid.hpp"
+#include "wilderness_map.hpp"
/**
* All structures for the game itself.
*/
struct Game {
+ /*
+ * Wilderness map
+ */
+ grid<wilderness_map> wilderness;
+
};
/**