| 27 | //----- InputManager --------------------------------------------------------------------------- |
| 28 | |
| 29 | InputManager::InputManager(Window* window) : mWindow(window), |
| 30 | mJoysticks(NULL), mInputConfigs(NULL), mKeyboardInputConfig(NULL), mPrevAxisValues(NULL), |
| 31 | mNumJoysticks(0), mNumPlayers(0), devicePollingTimer(NULL) |
| 32 | { |
| 33 | } |
| 34 | |
| 35 | InputManager::~InputManager() |
| 36 | { |
nothing calls this directly
no outgoing calls
no test coverage detected