diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-07-17 16:13:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-07-17 16:13:39 +0300 |
commit | 3e16eec4b33fb8882957b45c83c5c1f2b57625d2 (patch) | |
tree | 1ed0e3286446771049652551454fae234cad6a21 /src/input/inputmanager.h | |
parent | 25ef222f6fa5d0c9c13a76b3e2149cfec3b13227 (diff) | |
download | plus-3e16eec4b33fb8882957b45c83c5c1f2b57625d2.tar.gz plus-3e16eec4b33fb8882957b45c83c5c1f2b57625d2.tar.bz2 plus-3e16eec4b33fb8882957b45c83c5c1f2b57625d2.tar.xz plus-3e16eec4b33fb8882957b45c83c5c1f2b57625d2.zip |
Rename keydata into inputactiondata.
Diffstat (limited to 'src/input/inputmanager.h')
-rw-r--r-- | src/input/inputmanager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input/inputmanager.h b/src/input/inputmanager.h index ee5f101a8..11db43402 100644 --- a/src/input/inputmanager.h +++ b/src/input/inputmanager.h @@ -33,7 +33,7 @@ class Setup_Input; -struct KeyData; +struct InputActionData; class InputManager final { @@ -46,7 +46,7 @@ class InputManager final bool handleEvent(const SDL_Event &event); - bool checkKey(const KeyData *const key) const A_WARN_UNUSED; + bool checkKey(const InputActionData *const key) const A_WARN_UNUSED; void retrieve(); @@ -99,7 +99,7 @@ class InputManager final KeyToIdMap &idMap, KeyTimeMap &keyTimeMap, const int type) const; - bool invokeKey(const KeyData *const key, const int keyNum); + bool invokeKey(const InputActionData *const key, const int keyNum); bool handleAssignKey(const SDL_Event &event, const int type); |