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
commit42847682e6b753a819d23c3df77467f6d39c486b (patch)
tree63d9fd38d9f03cf65b7d0d694aec72b840e6bee9 /src/game_edit_data.hpp
parentd33961f89a0c80f2fae4020184e72467b5c192cf (diff)
Move bg 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 7addfd65..9370b7d4 100644
--- a/src/game_edit_data.hpp
+++ b/src/game_edit_data.hpp
@@ -1,5 +1,6 @@
#pragma once
+#include "hist_type.hpp"
#include "owner_type.hpp"
#include "player_class.hpp"
#include "player_race.hpp"
@@ -58,4 +59,9 @@ struct GameEditData {
*/
std::vector<player_race_mod> race_mod_info;
+ /**
+ * Player race histories
+ */
+ std::vector<hist_type> bg;
+
};