| 622 | } |
| 623 | |
| 624 | void Window::IgnoreNextMouseEvent(int mouseX, int mouseY) const |
| 625 | { |
| 626 | #if NAZARA_PLATFORM_SAFE |
| 627 | if (!m_impl) |
| 628 | { |
| 629 | NazaraError("Window not created"); |
| 630 | return; |
| 631 | } |
| 632 | #endif |
| 633 | |
| 634 | m_impl->IgnoreNextMouseEvent(mouseX, mouseY); |
| 635 | } |
| 636 | |
| 637 | bool Window::Initialize() |
| 638 | { |