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:49:38 +0200
commitc25b265c056a4512b0fb0e1789927e6c4b7b32cf (patch)
tree42bc01558926aba40452ef49215399eabb25228d /src/game_edit_data.hpp
parent89e75b855662b1dcc86a6dc3789fa496aafbb0a2 (diff)
Move t_info into 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 cc3af2dc..cd0a0b6b 100644
--- a/src/game_edit_data.hpp
+++ b/src/game_edit_data.hpp
@@ -19,6 +19,7 @@
#include "skill_descriptor.hpp"
#include "store_action_type.hpp"
#include "store_info_type.hpp"
+#include "trap_type.hpp"
#include "vault_type.hpp"
#include "wilderness_type_info.hpp"
@@ -141,4 +142,9 @@ struct GameEditData {
*/
std::vector<ability_type> ab_info;
+ /**
+ * Traps
+ */
+ std::vector<trap_type> t_info;
+
};