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
commit1173c144b06d5d2d3c9e6351af5e6f06cb843d4b (patch)
treed26a6fb2fb9be5633d2277b5679ce1260d725bf3 /src/game_edit_data.hpp
parent4d51094236b79b5d525c771d6cd3d990b9e64df8 (diff)
Move v_info into GameEditData
Diffstat (limited to 'src/game_edit_data.hpp')
-rw-r--r--src/game_edit_data.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/game_edit_data.hpp b/src/game_edit_data.hpp
index e05f6d60..7dea2610 100644
--- a/src/game_edit_data.hpp
+++ b/src/game_edit_data.hpp
@@ -1,9 +1,18 @@
#pragma once
+#include "vault_type.hpp"
+
+#include <vector>
+
/**
* Game edit data, i.e. the parsed contents of the edit .txt
* files.
*/
struct GameEditData {
+ /**
+ * Vaults
+ */
+ std::vector<vault_type> v_info;
+
};