From 41d2578d3401e38fa8600a533ad5998dc39e7be5 Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Sat, 21 May 2022 21:36:37 +0200 Subject: add move sideways capability --- src/command.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/command.h') 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 -- cgit v1.2.3