summaryrefslogtreecommitdiff
path: root/src/net/protocol.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/protocol.h')
-rw-r--r--src/net/protocol.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/net/protocol.h b/src/net/protocol.h
index c6e118d4..8ac0f16d 100644
--- a/src/net/protocol.h
+++ b/src/net/protocol.h
@@ -24,6 +24,8 @@
#ifndef _TMW_PROTOCOL_
#define _TMW_PROTOCOL_
+#include <SDL_types.h>
+
class Being;
// Packets from server to client
@@ -127,4 +129,10 @@ void attack(Being *target);
/** Request action */
void action(char type, int id);
+/** Talk to a being */
+void talk(Being *being);
+
+/** Pick up an item */
+void pickUp(Uint32 floorItemId);
+
#endif