Add IsCursorEnabled to raylib.h

This commit is contained in:
sirsegv 2025-12-20 18:06:45 +07:00 committed by GitHub
parent 737f00ef81
commit 6b6d862cbb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1025,6 +1025,7 @@ RLAPI void HideCursor(void); // Hides curso
RLAPI bool IsCursorHidden(void); // Check if cursor is not visible
RLAPI void EnableCursor(void); // Enables cursor (unlock cursor)
RLAPI void DisableCursor(void); // Disables cursor (lock cursor)
RLAPI bool IsCursorEnabled(void); // Check if cursor is enabled (unlocked)
RLAPI bool IsCursorOnScreen(void); // Check if cursor is on the screen
// Drawing-related functions