diff options
Diffstat (limited to 'src/command.cpp')
-rw-r--r-- | src/command.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/command.cpp b/src/command.cpp index ab134e9..d0ee45b 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -24,4 +24,11 @@ void WindowUnFocus::execute( GameState &game ){ } // Keyboard commands - +KeyboardDownReleased::~KeyboardDownReleased(){} +void KeyboardDownReleased::execute( GameState &game ){ + game.releaseDown(); +} +KeyboardDownPressed::~KeyboardDownPressed(){} +void KeyboardDownPressed::execute( GameState &game ){ + game.pressDown(); +} |