diff --git a/public/game/server/iplayerinfo.h b/public/game/server/iplayerinfo.h index f2f14d7f..2bcbf17b 100644 --- a/public/game/server/iplayerinfo.h +++ b/public/game/server/iplayerinfo.h @@ -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; diff --git a/public/inetmsghandler.h b/public/inetmsghandler.h index 7557d046..b5906ebb 100644 --- a/public/inetmsghandler.h +++ b/public/inetmsghandler.h @@ -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 ) \