From 0c6e23e869dd8fd6e83e96e264e28f1ec028f60f Mon Sep 17 00:00:00 2001 From: Maarten ter Huurne Date: Tue, 27 Jul 2010 21:29:06 +0200 Subject: [PATCH] Converted public fields of InputManager to private. --- src/inputmanager.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/inputmanager.h b/src/inputmanager.h index 11a08b2..0ea35c8 100644 --- a/src/inputmanager.h +++ b/src/inputmanager.h @@ -64,6 +64,10 @@ private: vector interval; SDLEventList events; + vector joysticks; + vector actions; + vector mappings; + public: static const int MAPPING_TYPE_UNDEFINED = -1; static const int MAPPING_TYPE_BUTTON = 0; @@ -74,10 +78,6 @@ public: ~InputManager(); void init(const string &conffile = "input.conf"); - vector joysticks; - vector actions; - vector mappings; - bool update(); int count(); void setActionsCount(int count);