| 384 | } |
| 385 | |
| 386 | void WindowBase::SetMousePosition(const Float2& position) const |
| 387 | { |
| 388 | if (_settings.AllowInput && _focused) |
| 389 | { |
| 390 | Input::SetMouseScreenPosition(ClientToScreen(position)); |
| 391 | } |
| 392 | } |
| 393 | |
| 394 | Float2 WindowBase::GetMousePositionDelta() const |
| 395 | { |
nothing calls this directly
no test coverage detected