aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDedicatedTest/concommand.cpp
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-10-06 23:33:28 +0100
committerBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-10-06 23:33:28 +0100
commitcb386ef4857f5a0f13998d1813cfa7d57a00af7d (patch)
tree910abfcba3c471373b01ed81503db299cdec6494 /NorthstarDedicatedTest/concommand.cpp
parent900855c0036aa9a6a6305e3f17a41a55640bdfaf (diff)
downloadNorthstarLauncher-cb386ef4857f5a0f13998d1813cfa7d57a00af7d.tar.gz
NorthstarLauncher-cb386ef4857f5a0f13998d1813cfa7d57a00af7d.zip
add ns_leave_to_lobby command
Diffstat (limited to 'NorthstarDedicatedTest/concommand.cpp')
-rw-r--r--NorthstarDedicatedTest/concommand.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/NorthstarDedicatedTest/concommand.cpp b/NorthstarDedicatedTest/concommand.cpp
index 5e0fab42..dff0f964 100644
--- a/NorthstarDedicatedTest/concommand.cpp
+++ b/NorthstarDedicatedTest/concommand.cpp
@@ -1,6 +1,7 @@
#include "pch.h"
#include "concommand.h"
#include "gameutils.h"
+#include "misccommands.h"
#include <iostream>
typedef void(*ConCommandConstructorType)(ConCommand* newCommand, const char* name, void(*callback)(const CCommand&), const char* helpString, int flags, void* parent);
@@ -18,4 +19,6 @@ void RegisterConCommand(const char* name, void(*callback)(const CCommand&), cons
void InitialiseConCommands(HMODULE baseAddress)
{
conCommandConstructor = (ConCommandConstructorType)((char*)baseAddress + 0x415F60);
+
+ AddMiscConCommands();
} \ No newline at end of file