summaryrefslogtreecommitdiff
path: root/src/game.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.hpp')
-rw-r--r--src/game.hpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/game.hpp b/src/game.hpp
index b4894fd6..5da479c9 100644
--- a/src/game.hpp
+++ b/src/game.hpp
@@ -1,6 +1,8 @@
#pragma once
#include "game_fwd.hpp"
+
+#include "game_edit_data.hpp"
#include "grid.hpp"
#include "h-basic.h"
#include "player_defs.hpp"
@@ -23,9 +25,9 @@ struct Game {
*/
std::array<s16b, PY_MAX_LEVEL> player_hp { };
-};
+ /**
+ * Game edit data
+ */
+ GameEditData edit_data;
-/**
- * Game instance
- */
-extern Game *game;
+};