diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-07-20 02:14:17 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-07-20 02:14:17 +0100 |
commit | 958d03d2817e312c8eb70234f1c65e4bcbded716 (patch) | |
tree | e7fd88a8e6a5ececdd46abf9b95c7a2e82eb2b98 /NorthstarDedicatedTest/convar.h | |
parent | a71d52ffd1531a4a03cb4c87dc56ace4f5cb33c1 (diff) | |
download | NorthstarLauncher-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.h | 5 |
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 |