diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-12-29 02:59:30 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-12-29 02:59:30 +0000 |
commit | 41101dbd7f38c7e9898422c755b8eaf379f1d7c1 (patch) | |
tree | 6d8f60024c355d15b3a42a7c0340c53d1859a910 /src/net/protocol.h | |
parent | 83ff9b3685fbf239772095b829e9c233e7907b3b (diff) | |
download | mana-client-41101dbd7f38c7e9898422c755b8eaf379f1d7c1.tar.gz mana-client-41101dbd7f38c7e9898422c755b8eaf379f1d7c1.tar.bz2 mana-client-41101dbd7f38c7e9898422c755b8eaf379f1d7c1.tar.xz mana-client-41101dbd7f38c7e9898422c755b8eaf379f1d7c1.zip |
Added popup support to the Gui class. Moved all mouse input handling into the Gui class.
Diffstat (limited to 'src/net/protocol.h')
-rw-r--r-- | src/net/protocol.h | 8 |
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 |