diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-10-19 02:18:24 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-10-19 02:18:24 +0100 |
commit | ed7e4fed4ddedaf9d4c181052ca552a0914d57bb (patch) | |
tree | 0d451e40d82b0513c4f2acd42ea750638b1d4c88 /NorthstarDedicatedTest/gameutils.h | |
parent | 9b8a6d155a7a2cf1bfb4e8d98980bfb0b6e94d92 (diff) | |
download | NorthstarLauncher-ed7e4fed4ddedaf9d4c181052ca552a0914d57bb.tar.gz NorthstarLauncher-ed7e4fed4ddedaf9d4c181052ca552a0914d57bb.zip |
add masterserver mod list support and fix some squirrel issues
Diffstat (limited to 'NorthstarDedicatedTest/gameutils.h')
-rw-r--r-- | NorthstarDedicatedTest/gameutils.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/NorthstarDedicatedTest/gameutils.h b/NorthstarDedicatedTest/gameutils.h index 188ec3bf..c861eb22 100644 --- a/NorthstarDedicatedTest/gameutils.h +++ b/NorthstarDedicatedTest/gameutils.h @@ -181,7 +181,12 @@ extern SetPlaylistVarOverrideType SetPlaylistVarOverride; typedef char*(*GetCurrentPlaylistVarType)(const char* varName, bool useOverrides); extern GetCurrentPlaylistVarType GetCurrentPlaylistVar; +// server entity stuff +typedef void*(*Server_GetEntityByIndexType)(int index); +extern Server_GetEntityByIndexType Server_GetEntityByIndex; + // uid extern char* g_LocalPlayerUserID; -void InitialiseEngineGameUtilFunctions(HMODULE baseAddress);
\ No newline at end of file +void InitialiseEngineGameUtilFunctions(HMODULE baseAddress); +void InitialiseServerGameUtilFunctions(HMODULE baseAddress);
\ No newline at end of file |