From 008df2cfd2acbea857412b8a564cc8f398d90424 Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Thu, 3 Jul 2014 12:23:54 -0400 Subject: [PATCH] Update IVEngineServer. --- public/eiface.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/eiface.h b/public/eiface.h index 48acdcf2..319c80e1 100644 --- a/public/eiface.h +++ b/public/eiface.h @@ -57,6 +57,8 @@ class CStandardSendProxies; class IAchievementMgr; class CGamestatsData; class CSteamID; +class IReplaySystem; +class IServer; typedef struct player_info_s player_info_t; @@ -395,7 +397,9 @@ public: virtual int GetAllClusterBounds( bbox_t *pBoxes, int maxboxes ) = 0; virtual edict_t *CreateFakeClientEx( const char *netname, bool bUnknown ) = 0; virtual int GetServerVersion() const = 0; - virtual void *GetReplay() = 0; + virtual float GetServerTime() const = 0; + virtual IServer *GetIServer() = 0; + virtual IReplaySystem *GetReplay() = 0; }; abstract_class IServerGCLobby