diff options
Diffstat (limited to 'src/game/server/gamecontext.h')
| -rw-r--r-- | src/game/server/gamecontext.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/game/server/gamecontext.h b/src/game/server/gamecontext.h index 41d6d899..3cb6245c 100644 --- a/src/game/server/gamecontext.h +++ b/src/game/server/gamecontext.h @@ -19,8 +19,7 @@ #define MAX_MUTES 35 -#define ZCATCH_VERSION "0.4.9 BETA" - +#define ZCATCH_VERSION "0.5" /* Tick Game Context (CGameContext::tick) @@ -79,6 +78,10 @@ class CGameContext : public IGameServer static void ConKill(IConsole::IResult *pResult, void *pUserData); + void Whisper(int ClientID, char *pStr); + void WhisperID(int ClientID, int VictimID, char *pMessage); + void Converse(int ClientID, char *pStr); + CGameContext(int Resetting); void Construct(int Resetting); @@ -150,7 +153,9 @@ public: CHAT_ALL=-2, CHAT_SPEC=-1, CHAT_RED=0, - CHAT_BLUE=1 + CHAT_BLUE=1, + CHAT_WHISPER_SEND=2, + CHAT_WHISPER_RECV=3 }; struct CMutes |