Platform/Window: Make PushEvent public

This commit is contained in:
Lynix
2019-03-10 15:50:16 +01:00
parent 097d16f664
commit 23b2f0a48d
8 changed files with 118 additions and 28 deletions

View File

@@ -412,6 +412,10 @@ namespace Nz
}
}
void WindowImpl::RefreshCursor()
{
}
void WindowImpl::SetCursor(const Cursor& cursor)
{
xcb_cursor_t cursorImpl = cursor.m_impl->GetCursor();

View File

@@ -58,6 +58,8 @@ namespace Nz
bool IsMinimized() const;
bool IsVisible() const;
void RefreshCursor();
void ProcessEvents(bool block);
void SetCursor(const Cursor& cursor);