diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-09-26 01:24:13 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-09-26 01:24:13 +0100 |
commit | e98fc31a93dfc9a14db7bb5510d25df0226d6fd3 (patch) | |
tree | 0a14184023e46394ee7bc83846c4466f7e3f14c9 /NorthstarDedicatedTest/tier0.h | |
parent | f083706eb05a22ec166d8e29b565f93785ad3cb0 (diff) | |
download | NorthstarLauncher-e98fc31a93dfc9a14db7bb5510d25df0226d6fd3.tar.gz NorthstarLauncher-e98fc31a93dfc9a14db7bb5510d25df0226d6fd3.zip |
add CommandLine() and Cbuf_Execute
Diffstat (limited to 'NorthstarDedicatedTest/tier0.h')
-rw-r--r-- | NorthstarDedicatedTest/tier0.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/NorthstarDedicatedTest/tier0.h b/NorthstarDedicatedTest/tier0.h index 07d91fe5..5375608c 100644 --- a/NorthstarDedicatedTest/tier0.h +++ b/NorthstarDedicatedTest/tier0.h @@ -1,5 +1,6 @@ #pragma once #include "pch.h" +#include "gameutils.h" // get exported tier0 by name void* ResolveTier0Function(const char* name); @@ -26,4 +27,6 @@ void operator delete(void* p) throw(); // would've liked to resolve these at compile time, but we load before tier0 so not really possible void Error(const char* fmt, ...); -double Plat_FloatTime();
\ No newline at end of file +double Plat_FloatTime(); + +CCommandLine* CommandLine();
\ No newline at end of file |