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
commitb329b2fd77e32112a08fc41e1be58b32648225cf (patch)
tree6478e5cd4f782c85f40935c232b4337712acadb0 /src/game_edit_data.hpp
parentfd6449ac75f553e32d2efa84c3cdfba88bb32d6e (diff)
Move ow_info and ba_info into GameEditData
Diffstat (limited to 'src/game_edit_data.hpp')
-rw-r--r--src/game_edit_data.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/game_edit_data.hpp b/src/game_edit_data.hpp
index 2cfea630..8ffb6b9a 100644
--- a/src/game_edit_data.hpp
+++ b/src/game_edit_data.hpp
@@ -1,7 +1,9 @@
#pragma once
+#include "owner_type.hpp"
#include "randart_gen_type.hpp"
#include "randart_part_type.hpp"
+#include "store_action_type.hpp"
#include "vault_type.hpp"
#include <vector>
@@ -28,4 +30,14 @@ struct GameEditData {
*/
std::vector<randart_gen_type> ra_gen;
+ /**
+ * Building actions.
+ */
+ std::vector<store_action_type> ba_info;
+
+ /**
+ * Building owners.
+ */
+ std::vector<owner_type> ow_info;
+
};