diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-09-27 21:09:59 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-09-27 21:09:59 +0100 |
commit | 06a59c70c1239de114e9bc0ce5c4ee8deabd1b6b (patch) | |
tree | f5ca0918d19746514b1a25bb54e09a1d0a4318f2 /NorthstarDedicatedTest/gameutils.h | |
parent | 22cfe175e12c68d62412ca662b300aa89e097b24 (diff) | |
download | NorthstarLauncher-06a59c70c1239de114e9bc0ce5c4ee8deabd1b6b.tar.gz NorthstarLauncher-06a59c70c1239de114e9bc0ce5c4ee8deabd1b6b.zip |
dedi works now
Diffstat (limited to 'NorthstarDedicatedTest/gameutils.h')
-rw-r--r-- | NorthstarDedicatedTest/gameutils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/NorthstarDedicatedTest/gameutils.h b/NorthstarDedicatedTest/gameutils.h index f63d4c81..cabd3edb 100644 --- a/NorthstarDedicatedTest/gameutils.h +++ b/NorthstarDedicatedTest/gameutils.h @@ -147,12 +147,13 @@ enum EngineState_t class CEngine { public: + virtual void unknown() {} // unsure if this is where virtual bool Load(bool dedicated, const char* baseDir) {} virtual void Unload() {} virtual void SetNextState(EngineState_t iNextState) {} virtual EngineState_t GetState() {} virtual void Frame() {} - virtual float GetFrameTime() {} + virtual double GetFrameTime() {} virtual float GetCurTime() {} EngineQuitState m_nQuitting; @@ -171,7 +172,6 @@ extern CEngine* g_pEngine; extern ConVar* Cvar_hostport; - // playlist stuff typedef const char*(*GetCurrentPlaylistType)(); |