diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-07-18 17:02:39 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-07-18 17:02:39 +0100 |
commit | a71d52ffd1531a4a03cb4c87dc56ace4f5cb33c1 (patch) | |
tree | d3cc5fcde9df08ff131a2216a44c73dee65fdc1f /NorthstarDedicatedTest/dllmain.cpp | |
parent | ca5db71e8215a6c5660fe03088a6d7349f55f817 (diff) | |
download | NorthstarLauncher-a71d52ffd1531a4a03cb4c87dc56ace4f5cb33c1.tar.gz NorthstarLauncher-a71d52ffd1531a4a03cb4c87dc56ace4f5cb33c1.zip |
add rapidjson, move all logging to spdlog
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 405d3e82..4e4978c9 100644 --- a/NorthstarDedicatedTest/dllmain.cpp +++ b/NorthstarDedicatedTest/dllmain.cpp @@ -6,6 +6,7 @@ #include "sourceconsole.h" #include "logging.h" #include "concommand.h" +#include "modmanager.h" #include <iostream> bool initialised = false; @@ -53,4 +54,8 @@ void InitialiseNorthstar() } AddDllLoadCallback("server.dll", InitialiseServerSquirrel); + + + // do this after all the other callbacks + AddDllLoadCallback("engine.dll", InitialiseModManager); }
\ No newline at end of file |