1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 20:16:10 +08:00

Updated IPlayerInfo AGAIN.

This commit is contained in:
Scott Ehlert
2010-04-29 23:27:03 -04:00
parent cf926a50ae
commit 7daeca53eb
2 changed files with 2 additions and 2 deletions

View File

@ -188,7 +188,6 @@ public:
virtual int GetArmorValue(); virtual int GetArmorValue();
virtual bool IsHLTV(); virtual bool IsHLTV();
virtual bool IsReplay();
virtual bool IsPlayer(); virtual bool IsPlayer();
virtual bool IsFakeClient(); virtual bool IsFakeClient();
virtual bool IsDead(); virtual bool IsDead();
@ -219,6 +218,7 @@ public:
virtual void SetLastUserCommand( const CBotCmd &cmd ); virtual void SetLastUserCommand( const CBotCmd &cmd );
virtual CBotCmd GetLastUserCommand(); virtual CBotCmd GetLastUserCommand();
virtual bool IsReplay();
private: private:
CBasePlayer *m_pParent; CBasePlayer *m_pParent;

View File

@ -124,7 +124,6 @@ public:
// various player flags // various player flags
virtual bool IsHLTV() = 0; virtual bool IsHLTV() = 0;
virtual bool IsReplay() = 0;
virtual bool IsPlayer() = 0; virtual bool IsPlayer() = 0;
virtual bool IsFakeClient() = 0; virtual bool IsFakeClient() = 0;
virtual bool IsDead() = 0; virtual bool IsDead() = 0;
@ -146,6 +145,7 @@ public:
virtual const int GetMaxHealth() = 0; virtual const int GetMaxHealth() = 0;
// the last user input from this player // the last user input from this player
virtual CBotCmd GetLastUserCommand() = 0; virtual CBotCmd GetLastUserCommand() = 0;
virtual bool IsReplay() = 0;
}; };