diff --git a/include/Window.hpp b/include/Window.hpp index 1ec89203..20c5138d 100644 --- a/include/Window.hpp +++ b/include/Window.hpp @@ -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 */