diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-08-06 05:25:47 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-08-06 05:25:47 +0100 |
commit | 4d0e4679d05b146e5e43a1a707708c6451099c54 (patch) | |
tree | 111c18c310feeaf2096855e4072dea46f8f20eb6 /NorthstarDedicatedTest/dllmain.cpp | |
parent | 02e422166baa12bbdc8af8806376cb2340fef896 (diff) | |
download | NorthstarLauncher-4d0e4679d05b146e5e43a1a707708c6451099c54.tar.gz NorthstarLauncher-4d0e4679d05b146e5e43a1a707708c6451099c54.zip |
add support for connecting to servers from masterserver
Diffstat (limited to 'NorthstarDedicatedTest/dllmain.cpp')
-rw-r--r-- | NorthstarDedicatedTest/dllmain.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/NorthstarDedicatedTest/dllmain.cpp b/NorthstarDedicatedTest/dllmain.cpp index 691b6d53..f5118900 100644 --- a/NorthstarDedicatedTest/dllmain.cpp +++ b/NorthstarDedicatedTest/dllmain.cpp @@ -13,6 +13,8 @@ #include "scriptserverbrowser.h" #include "keyvalues.h" #include "masterserver.h" +#include "gameutils.h" +#include "chatcommand.h" bool initialised = false; @@ -47,6 +49,8 @@ void InitialiseNorthstar() InstallInitialHooks(); InitialiseInterfaceCreationHooks(); + AddDllLoadCallback("engine.dll", InitialiseEngineGameUtilFunctions); + if (IsDedicated()) AddDllLoadCallback("engine.dll", InitialiseDedicated); @@ -58,6 +62,7 @@ void InitialiseNorthstar() AddDllLoadCallback("client.dll", InitialiseClientSquirrel); AddDllLoadCallback("client.dll", InitialiseSourceConsole); + AddDllLoadCallback("engine.dll", InitialiseChatCommands); AddDllLoadCallback("client.dll", InitialiseScriptModMenu); AddDllLoadCallback("client.dll", InitialiseScriptServerBrowser); } |