summaryrefslogtreecommitdiff
path: root/src/game.hpp
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2017-05-02 19:20:57 +0200
committerBardur Arantsson <bardur@scientician.net>2017-05-02 19:20:57 +0200
commit0f37adeca0e2facfcb32f30e285048fac23c8845 (patch)
treeafd03e3d5b92f2936e0606c52d20e3704e16295f /src/game.hpp
parent2bf6a6ce72bf3f2038cd383fb7c6d35679ef9341 (diff)
Move died_from to Game struct
Diffstat (limited to 'src/game.hpp')
-rw-r--r--src/game.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/game.hpp b/src/game.hpp
index daae15c3..00a0c8d5 100644
--- a/src/game.hpp
+++ b/src/game.hpp
@@ -25,6 +25,11 @@ struct Game {
std::string player_base;
/**
+ * What did the player die from?
+ */
+ std::string died_from;
+
+ /**
* Wilderness map
*/
grid<wilderness_map> wilderness;