| 186 | } |
| 187 | |
| 188 | void InputManager::clearContexts() |
| 189 | { |
| 190 | for (InputAction* action : m_currentActions) |
| 191 | { |
| 192 | action->disable(); |
| 193 | } |
| 194 | m_currentActions.clear(); |
| 195 | // m_monitors.clear(); |
| 196 | } |
| 197 | |
| 198 | InputManager& InputManager::addContext(const std::string& context) |
| 199 | { |
no test coverage detected