Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/input.h')
-rw-r--r--src/client/input.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/client/input.h b/src/client/input.h
index fa5486d..23ddd5d 100644
--- a/src/client/input.h
+++ b/src/client/input.h
@@ -22,8 +22,10 @@ public:
void process();
protected:
- /// handle keydown events
- void handle_keydown(SDL_keysym* keysym);
+ /// handle key release events
+ void handle_keyreleased(SDL_keysym* keysym);
+ /// handle key pressed events
+ void handle_keypressed(SDL_keysym* keysym);
};
} // namespace Client