diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-03-24 04:26:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-03-26 21:45:24 +0300 |
commit | 36e5d21fe06709ba4d12a8619af07b86a676cf8c (patch) | |
tree | a9209e16e6f31cd74047f86ef1e642f467e128e2 /src/game.h | |
parent | 0921a130f0241a17ffcedf92d602808e18f1614b (diff) | |
download | plus-36e5d21fe06709ba4d12a8619af07b86a676cf8c.tar.gz plus-36e5d21fe06709ba4d12a8619af07b86a676cf8c.tar.bz2 plus-36e5d21fe06709ba4d12a8619af07b86a676cf8c.tar.xz plus-36e5d21fe06709ba4d12a8619af07b86a676cf8c.zip |
Redesign input handling.
Diffstat (limited to 'src/game.h')
-rw-r--r-- | src/game.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/game.h b/src/game.h index 4469d3774..637c29c7a 100644 --- a/src/game.h +++ b/src/game.h @@ -78,11 +78,7 @@ class Game void handleInput(); - bool handleOutfitsKeys(SDL_Event &event, bool &used); - - bool handleSwitchKeys(SDL_Event &event, bool &used); - - void handleMoveAndAttack(SDL_Event &event, bool wasDown); + void handleMoveAndAttack(); void handleActive(SDL_Event &event); @@ -110,8 +106,12 @@ class Game void videoResized(int width, int height); - private: + bool getValidSpeed() + { return mValidSpeed; } + static bool saveScreenshot(); + + private: void updateHistory(SDL_Event &event); void checkKeys(); |