1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2024-12-23 01:59:43 +08:00

Update to IPlayerInfo and INetMsgHandler (bug 4372).

This commit is contained in:
Scott Ehlert 2010-04-28 23:16:28 -07:00
parent 9534adab91
commit c722e8334b
2 changed files with 3 additions and 0 deletions

View File

@ -124,6 +124,7 @@ public:
// various player flags
virtual bool IsHLTV() = 0;
virtual bool IsReplay() = 0;
virtual bool IsPlayer() = 0;
virtual bool IsFakeClient() = 0;
virtual bool IsDead() = 0;

View File

@ -39,6 +39,8 @@ public:
virtual void FileReceived(const char *fileName, unsigned int transferID) = 0; // we received a file
virtual void FileDenied(const char *fileName, unsigned int transferID) = 0; // a file request was denied by other side
virtual void FileSent(const char *fileName, unsigned int transferID) = 0;
};
#define PROCESS_NET_MESSAGE( name ) \