From d88a6239ca7de9eadce3dd4bf72205b3d7422efc Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Wed, 6 May 2015 15:46:51 -0400 Subject: [PATCH] Update IVEngineServer. --- public/eiface.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/public/eiface.h b/public/eiface.h index c98dc112..d9a8c7e3 100644 --- a/public/eiface.h +++ b/public/eiface.h @@ -421,6 +421,14 @@ public: // Exposed for server plugin authors virtual IServer *GetIServer() = 0; + + // This function currently appears to be unused + virtual void ManageAddonsForActiveSession(bool,char const*,char const*) = 0; + + virtual bool IsPlayerNameLocked(const edict_t *pPlayer) = 0; + virtual bool CanPlayerChangeName(const edict_t *pPlayer) = 0; + + virtual void *GetReplay() = 0; }; typedef IVEngineServer IVEngineServer021;