We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6865344 + 9ea795d commit 6bd8b09Copy full SHA for 6bd8b09
1 file changed
include/Window.hpp
@@ -91,6 +91,21 @@ class Window {
91
*/
92
static bool IsCursorOnScreen() { return ::IsCursorOnScreen(); }
93
94
+ /**
95
+ * Check if cursor is not visible
96
+ */
97
+ static bool IsCursorHidden() { return ::IsCursorHidden(); }
98
+
99
100
+ * Hides cursor
101
102
+ static void HideCursor() { ::HideCursor(); }
103
104
105
+ * Shows cursor
106
107
+ static void ShowCursor() { ::ShowCursor(); }
108
109
/**
110
* Check if window is currently fullscreen
111
0 commit comments