| 662 | } |
| 663 | |
| 664 | Float2 PlatformBase::GetMousePosition() |
| 665 | { |
| 666 | const Window* win = Engine::MainWindow; |
| 667 | if (win) |
| 668 | return win->ClientToScreen(win->GetMousePosition()); |
| 669 | return Float2::Minimum; |
| 670 | } |
| 671 | |
| 672 | void PlatformBase::SetMousePosition(const Float2& position) |
| 673 | { |
nothing calls this directly
no test coverage detected