| 350 | } |
| 351 | |
| 352 | bool Input::isKeyModPressed() const { |
| 353 | return ( mInputMod & KeyMod::getDefaultModifier() ) != 0; |
| 354 | } |
| 355 | |
| 356 | bool Input::isLeftShiftPressed() const { |
| 357 | return ( mInputMod & KEYMOD_LSHIFT ) != 0; |
no outgoing calls
no test coverage detected