diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2022-05-21 21:36:37 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2022-05-21 21:36:37 +0200 |
commit | 41d2578d3401e38fa8600a533ad5998dc39e7be5 (patch) | |
tree | 8199af62e448b1010bab8ec4caca98d7ada860ff /src/command.h | |
parent | 3ce5ae75abd2de874b6c33214ea44063f11a0d4d (diff) |
add move sideways capability
Diffstat (limited to 'src/command.h')
-rw-r--r-- | src/command.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/command.h b/src/command.h index a40e786..c22e6e5 100644 --- a/src/command.h +++ b/src/command.h @@ -36,5 +36,13 @@ class KeyboardDownPressed: public Command { ~KeyboardDownPressed(); void execute( GameState &state ) override; }; +class KeyboardLeftPressed: public Command { + ~KeyboardLeftPressed(); + void execute( GameState &state ) override; +}; +class KeyboardRightPressed: public Command { + ~KeyboardRightPressed(); + void execute( GameState &state ) override; +}; #endif |