diff options
author | Joel Machens <ajmach6@gmail.com> | 2023-10-17 04:43:40 +0200 |
---|---|---|
committer | Joel Machens <ajmach6@gmail.com> | 2023-10-25 02:17:45 +0200 |
commit | c9c198e3b47e84eaea998cd9d2f7a8aa2b50ce73 (patch) | |
tree | bd5fba638a55c683e587eb5e2bbde43ab5fb1a00 /src/openvic-simulation/history/HistoryManager.hpp | |
parent | 7bda541557722b2a244e80796c612b735d8b5cf7 (diff) |
Country History & Order of Battle Loading
Diffstat (limited to 'src/openvic-simulation/history/HistoryManager.hpp')
-rw-r--r-- | src/openvic-simulation/history/HistoryManager.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/openvic-simulation/history/HistoryManager.hpp b/src/openvic-simulation/history/HistoryManager.hpp index bec5359..e0d6877 100644 --- a/src/openvic-simulation/history/HistoryManager.hpp +++ b/src/openvic-simulation/history/HistoryManager.hpp @@ -1,15 +1,18 @@ #pragma once #include "openvic-simulation/history/Bookmark.hpp" +#include "openvic-simulation/history/CountryHistory.hpp" #include "openvic-simulation/types/IdentifierRegistry.hpp" namespace OpenVic { struct HistoryManager { private: BookmarkManager bookmark_manager; + CountryHistoryManager country_manager; public: REF_GETTERS(bookmark_manager) + REF_GETTERS(country_manager) inline bool load_bookmark_file(ast::NodeCPtr root) { return bookmark_manager.load_bookmark_file(root); |