| 264 | } |
| 265 | |
| 266 | bool Input::IsReleased(InputButton button) { |
| 267 | assert(!IsSystemButton(button)); |
| 268 | WaitInput(false); |
| 269 | return released[button]; |
| 270 | } |
| 271 | |
| 272 | bool Input::IsSystemPressed(InputButton button) { |
| 273 | assert(IsSystemButton(button)); |
nothing calls this directly
no test coverage detected