| 258 | } |
| 259 | |
| 260 | bool Input::IsRepeated(InputButton button) { |
| 261 | assert(!IsSystemButton(button)); |
| 262 | WaitInput(true); |
| 263 | return repeated[button]; |
| 264 | } |
| 265 | |
| 266 | bool Input::IsReleased(InputButton button) { |
| 267 | assert(!IsSystemButton(button)); |
nothing calls this directly
no test coverage detected