| 123 | float GetUpdateTime() const override; |
| 124 | |
| 125 | bool ModifierIsPressed() const override { return KeyIsPressed(KEY_LCTRL) || KeyIsPressed(KEY_RCTRL) || KeyIsPressed(KEY_LGUI) || KeyIsPressed(KEY_RGUI); } |
| 126 | bool ShiftIsPressed() const override { return KeyIsPressed(KEY_LSHIFT) || KeyIsPressed(KEY_RSHIFT); } |
| 127 | bool AltIsPressed() const override { return KeyIsPressed(KEY_LALT) || KeyIsPressed(KEY_RALT); } |
| 128 | bool KeyIsPressed(int Key) const override; |
no outgoing calls
no test coverage detected