summaryrefslogtreecommitdiff
path: root/include/proto.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/proto.h')
-rw-r--r--include/proto.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/proto.h b/include/proto.h
index cc17f79..5e50965 100644
--- a/include/proto.h
+++ b/include/proto.h
@@ -6,6 +6,7 @@
#include "tux.h"
#include "server.h"
#include "item.h"
+#include "shot.h"
extern void proto_send_hello_client();
extern void proto_recv_hello_server(client_t *client, char *msg);
@@ -25,10 +26,14 @@ extern void proto_send_deltux_server(client_t *client);
extern void proto_recv_deltux_client(char *msg);
extern void proto_send_additem_server(item_t *p);
extern void proto_recv_additem_client(char *msg);
+extern void proto_send_shot_server(shot_t *p);
+extern void proto_recv_shot_client(char *msg);
extern void proto_send_context_client(tux_t *tux);
extern void proto_recv_context_server(client_t *client, char *msg);
extern void proto_send_ping_client();
extern void proto_recv_ping_server(client_t *client, char *msg);
+extern void proto_send_ping_server();
+extern void proto_recv_ping_client(char *msg);
extern void proto_send_end_client();
extern void proto_recv_end_server(client_t *client, char *msg);
extern void proto_send_end_server();