1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2024-12-23 01:59:43 +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 bool IsHLTV();
virtual bool IsReplay();
virtual bool IsPlayer();
virtual bool IsFakeClient();
virtual bool IsDead();
@ -219,6 +218,7 @@ public:
virtual void SetLastUserCommand( const CBotCmd &cmd );
virtual CBotCmd GetLastUserCommand();
virtual bool IsReplay();
private:
CBasePlayer *m_pParent;

View File

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