Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions include/Window.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,21 @@ class Window {
*/
static bool IsCursorOnScreen() { return ::IsCursorOnScreen(); }

/**
* Check if cursor is not visible
*/
static bool IsCursorHidden() { return ::IsCursorHidden(); }

/**
* Hides cursor
*/
static void HideCursor() { ::HideCursor(); }

/**
* Shows cursor
*/
static void ShowCursor() { ::ShowCursor(); }

/**
* Check if window is currently fullscreen
*/
Expand Down