| 374 | } |
| 375 | |
| 376 | bool WindowBase::GetKeyUp(KeyboardKeys key) const |
| 377 | { |
| 378 | return _settings.AllowInput && _focused ? Input::GetKeyUp(key) : false; |
| 379 | } |
| 380 | |
| 381 | Float2 WindowBase::GetMousePosition() const |
| 382 | { |
nothing calls this directly
no test coverage detected