summaryrefslogtreecommitdiff
path: root/src/game.hpp
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2016-09-17 09:58:15 +0200
committerBardur Arantsson <bardur@scientician.net>2016-09-17 09:58:15 +0200
commit05cdb1a997cba7748f0089cffa0a5885ca0b2c43 (patch)
treee3b0b3bb636e1e099eafe784eaeffdb147348b81 /src/game.hpp
parent5eec61dd05577623c1d5b9eed3a22d1352dcd990 (diff)
Move wilderness structure into Game
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;
+
};
/**