summaryrefslogtreecommitdiff
path: root/src/game_edit_data.hpp
diff options
context:
space:
mode:
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;
+
};