From 1d6a7bb467d28898da5eb1270a6e8dabf958fa42 Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Tue, 28 Dec 2021 12:39:47 +0100 Subject: Huge rewrite, this is not how I'm supposed to use git but whatever --- 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 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 -- cgit v1.2.3