diff options
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 5af7517..a40e786 100644 --- a/src/command.h +++ b/src/command.h @@ -28,5 +28,13 @@ class WindowUnFocus: public Command { }; // Keyboard commands +class KeyboardDownReleased: public Command { + ~KeyboardDownReleased(); + void execute( GameState &state ) override; +}; +class KeyboardDownPressed: public Command { + ~KeyboardDownPressed(); + void execute( GameState &state ) override; +}; #endif |