aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDedicatedTest/convar.h
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-07-20 02:14:17 +0100
committerBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-07-20 02:14:17 +0100
commit958d03d2817e312c8eb70234f1c65e4bcbded716 (patch)
treee7fd88a8e6a5ececdd46abf9b95c7a2e82eb2b98 /NorthstarDedicatedTest/convar.h
parenta71d52ffd1531a4a03cb4c87dc56ace4f5cb33c1 (diff)
downloadNorthstarLauncher-958d03d2817e312c8eb70234f1c65e4bcbded716.tar.gz
NorthstarLauncher-958d03d2817e312c8eb70234f1c65e4bcbded716.zip
add basic mod support with support for mod convars
Diffstat (limited to 'NorthstarDedicatedTest/convar.h')
-rw-r--r--NorthstarDedicatedTest/convar.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/NorthstarDedicatedTest/convar.h b/NorthstarDedicatedTest/convar.h
index e189e594..014cb823 100644
--- a/NorthstarDedicatedTest/convar.h
+++ b/NorthstarDedicatedTest/convar.h
@@ -1,4 +1,5 @@
#pragma once
+#include <set>
// taken directly from iconvar.h
// The default, no flags at all
@@ -94,4 +95,6 @@ public:
ConVar* RegisterConVar(const char* name, const char* defaultValue, int flags, const char* helpString);
-void InitialiseConVars(HMODULE baseAddress); \ No newline at end of file
+void InitialiseConVars(HMODULE baseAddress);
+
+extern std::set<std::string> g_CustomConvars; \ No newline at end of file