| 275 | } |
| 276 | |
| 277 | bool Input::IsSystemTriggered(InputButton button) { |
| 278 | assert(IsSystemButton(button)); |
| 279 | return triggered[button]; |
| 280 | } |
| 281 | |
| 282 | bool Input::IsSystemRepeated(InputButton button) { |
| 283 | assert(IsSystemButton(button)); |
nothing calls this directly
no test coverage detected