| 252 | } |
| 253 | |
| 254 | bool Input::IsTriggered(InputButton button) { |
| 255 | assert(!IsSystemButton(button)); |
| 256 | WaitInput(true); |
| 257 | return triggered[button]; |
| 258 | } |
| 259 | |
| 260 | bool Input::IsRepeated(InputButton button) { |
| 261 | assert(!IsSystemButton(button)); |
nothing calls this directly
no test coverage detected