summaryrefslogtreecommitdiff
path: root/src/game_edit_data.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:45:08 +0200
commit3cdeb22086fc177165acb2d7b6530ccc230ec8e6 (patch)
tree3a026b45b8cb1af24aad41bf242a4e8b5b555772 /src/game_edit_data.hpp
parentbea14b1db03fcd62d7dfd6633a0802f222792311 (diff)
Move class_info to GameEditData
Diffstat (limited to 'src/game_edit_data.hpp')
-rw-r--r--src/game_edit_data.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/game_edit_data.hpp b/src/game_edit_data.hpp
index 8ffb6b9a..c6f45dc0 100644
--- a/src/game_edit_data.hpp
+++ b/src/game_edit_data.hpp
@@ -1,6 +1,7 @@
#pragma once
#include "owner_type.hpp"
+#include "player_class.hpp"
#include "randart_gen_type.hpp"
#include "randart_part_type.hpp"
#include "store_action_type.hpp"
@@ -40,4 +41,9 @@ struct GameEditData {
*/
std::vector<owner_type> ow_info;
+ /**
+ * Player classes.
+ */
+ std::vector<player_class> class_info;
+
};