diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2021-12-28 12:39:47 +0100 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2021-12-28 12:40:09 +0100 |
commit | 1d6a7bb467d28898da5eb1270a6e8dabf958fa42 (patch) | |
tree | f4ff1dfebf6fe6e747181b5fcdebede2b9bd9302 /src/command.h | |
parent | a7f23865ff7ffb57d35505bc0cf67507f1751ff2 (diff) |
Huge rewrite, this is not how I'm supposed to use git but whatever
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 |