| 369 | } |
| 370 | |
| 371 | bool WindowBase::GetKeyDown(KeyboardKeys key) const |
| 372 | { |
| 373 | return _settings.AllowInput && _focused ? Input::GetKeyDown(key) : false; |
| 374 | } |
| 375 | |
| 376 | bool WindowBase::GetKeyUp(KeyboardKeys key) const |
| 377 | { |
nothing calls this directly
no test coverage detected