diff options
Diffstat (limited to 'src/game/game_protocol.h')
| -rw-r--r-- | src/game/game_protocol.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/game/game_protocol.h b/src/game/game_protocol.h index 6be89e35..982a14b2 100644 --- a/src/game/game_protocol.h +++ b/src/game/game_protocol.h @@ -38,15 +38,17 @@ enum enum { MSG_NULL=0, - MSG_SAY, - MSG_CHAT, - MSG_SETNAME, - MSG_KILLMSG, + MSG_SAY, // client -> server + MSG_CHAT, // server -> client + MSG_SETINFO, // server -> client - contains name, skin and color info + MSG_KILLMSG, // server -> client MSG_SETTEAM, MSG_JOIN, MSG_QUIT, MSG_EMOTICON, - MSG_CHANGENAME, + MSG_STARTINFO, // client -> server + MSG_CHANGEINFO, // client -> server + MSG_READY_TO_ENTER // server -> client }; enum |