diff options
Diffstat (limited to 'src/base/proto.h')
| -rw-r--r-- | src/base/proto.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/base/proto.h b/src/base/proto.h index 116562b..bcc8f42 100644 --- a/src/base/proto.h +++ b/src/base/proto.h @@ -69,6 +69,10 @@ extern void proto_recv_additem_client(char *msg); extern void proto_send_shot_server(int type, client_t *client, shot_t *p); extern void proto_recv_shot_client(char *msg); extern void proto_send_ping_client(); +extern void proto_send_chat_client(char *s); +extern void proto_recv_chat_server(client_t *client, char *msg); +extern void proto_send_chat_server(int type, client_t *client, char *msg); +extern void proto_recv_chat_client(char *msg); extern void proto_recv_ping_server(client_t *client, char *msg); extern void proto_send_ping_server(int type, client_t *client); extern void proto_recv_ping_client(char *msg); |