| 270 | } |
| 271 | |
| 272 | bool Input::IsSystemPressed(InputButton button) { |
| 273 | assert(IsSystemButton(button)); |
| 274 | return press_time[button] > 0; |
| 275 | } |
| 276 | |
| 277 | bool Input::IsSystemTriggered(InputButton button) { |
| 278 | assert(IsSystemButton(button)); |
nothing calls this directly
no test coverage detected