| 159 | static void processMouseMoveEvent(const MouseMoveEvent& p_Event); |
| 160 | |
| 161 | _INTR_INLINE static void resetKeyStates() |
| 162 | { |
| 163 | for (uint32_t i = 0u; i < Key::kCount; ++i) |
| 164 | { |
| 165 | _keyStates[i] = KeyState::kReleased; |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | _INTR_INLINE static uint8_t& getKeyState(Key::Enum p_Key) |
| 170 | { |
nothing calls this directly
no outgoing calls
no test coverage detected