aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDedicatedTest/modmanager.h
diff options
context:
space:
mode:
Diffstat (limited to 'NorthstarDedicatedTest/modmanager.h')
-rw-r--r--NorthstarDedicatedTest/modmanager.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/NorthstarDedicatedTest/modmanager.h b/NorthstarDedicatedTest/modmanager.h
index 079e1613..03160dd8 100644
--- a/NorthstarDedicatedTest/modmanager.h
+++ b/NorthstarDedicatedTest/modmanager.h
@@ -3,6 +3,7 @@
#include <string>
#include <vector>
#include <filesystem>
+#include "rapidjson/document.h"
namespace fs = std::filesystem;
@@ -96,6 +97,11 @@ public:
class ModManager
{
+private:
+ bool m_hasLoadedMods = false;
+ bool m_hasEnabledModsCfg;
+ rapidjson::Document m_enabledModsCfg;
+
public:
std::vector<Mod*> m_loadedMods;
std::unordered_map<std::string, ModOverrideFile*> m_modFiles;