From 35a828cecc383caf5d2bff5cdfa09dd11261ecc8 Mon Sep 17 00:00:00 2001 From: GAMMACASE <31375974+GAMMACASE@users.noreply.github.com> Date: Mon, 8 Sep 2025 20:48:21 +0300 Subject: [PATCH] Add few more methods --- public/eiface.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/public/eiface.h b/public/eiface.h index 0d0f2a52..64eb522a 100644 --- a/public/eiface.h +++ b/public/eiface.h @@ -634,19 +634,19 @@ public: virtual IHLTVDirector *GetHLTVDirector( void ) = 0; + virtual int GetPlayerTickBase( CPlayerSlot slot ) = 0; virtual void unk101( CPlayerSlot slot ) = 0; - virtual void unk102( CPlayerSlot slot ) = 0; // Handles incoming usermessages from the client virtual void ClientSvcUserMessage( CPlayerSlot slot, int um_type, uint32 size, const void *buf ) = 0; - // Something pawn related + // Returns this player hltv delay in seconds + virtual float GetPlayerHltvDelay( CPlayerSlot slot, CEntityIndex &replay_ent ) = 0; + virtual void ReplayLastPlayerKill( CPlayerSlot slot, void *kill_info ) = 0; + virtual void unk201() = 0; virtual void unk202() = 0; - virtual void unk203() = 0; - virtual void unk204() = 0; - virtual void unk205() = 0; }; typedef IVEngineServer2 IVEngineServer;