diff options
Diffstat (limited to 'src/command.h')
-rw-r--r-- | src/command.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/command.h b/src/command.h index c22e6e5..425480c 100644 --- a/src/command.h +++ b/src/command.h @@ -45,4 +45,8 @@ class KeyboardRightPressed: public Command { void execute( GameState &state ) override; }; +class KeyboardSpacePressed: public Command { + ~KeyboardSpacePressed(); + void execute( GameState &state ) override; +}; #endif |