diff options
Diffstat (limited to 'include/player.hpp')
-rw-r--r-- | include/player.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/player.hpp b/include/player.hpp index 077e798..ffd2863 100644 --- a/include/player.hpp +++ b/include/player.hpp @@ -53,15 +53,15 @@ public: * Handles key up events for the player. * @param kue key up event data */ - void receive(const KeyUpEvent&); + bool receive(const KeyUpEvent&); /** * Handles key down events for the player. * @param kde key down event data */ - void receive(const KeyDownEvent&); + bool receive(const KeyDownEvent&); - void receive(const UseItemEvent&); + bool receive(const UseItemEvent&); /** * Gets the player's position. |