summaryrefslogtreecommitdiff
path: root/src/game.hpp
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2016-10-05 18:45:08 +0200
committerBardur Arantsson <bardur@scientician.net>2016-10-05 18:49:37 +0200
commit765e1a3dc7abce3a849b8d1f124ada7a6984154a (patch)
tree0a4530d2091f05b70638f2eb833ae9b7238e4927 /src/game.hpp
parent5869c5622e4345ffd50e0713d188f2d283b61caa (diff)
Move s_{info,descriptors} to Game/GameEdtiData
Diffstat (limited to 'src/game.hpp')
-rw-r--r--src/game.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/game.hpp b/src/game.hpp
index 5da479c9..845824b7 100644
--- a/src/game.hpp
+++ b/src/game.hpp
@@ -6,6 +6,7 @@
#include "grid.hpp"
#include "h-basic.h"
#include "player_defs.hpp"
+#include "skill_type.hpp"
#include "wilderness_map.hpp"
/**
@@ -30,4 +31,9 @@ struct Game {
*/
GameEditData edit_data;
+ /**
+ * Current skill values.
+ */
+ std::vector<skill_type> s_info;
+
};