From 9833fe45eb5cd6cfd3593b7f4d1aae9cf7367729 Mon Sep 17 00:00:00 2001 From: Chance Snow Date: Wed, 21 Oct 2020 03:55:52 -0500 Subject: Added desktop cursor getter and setter functions (#1407) * [core] Added desktop cursor getter and setter functions * Example: Set mouse cursor in text input box * Setup standard cursors _after_ GLFW window initialization * Remove old `int GetMouseWheelMove` declaration --- projects/Notepad++/raylib_npp_parser/raylib_to_parse.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'projects/Notepad++/raylib_npp_parser') diff --git a/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h b/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h index 7ef12f93..a03d5b8f 100644 --- a/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h +++ b/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h @@ -148,6 +148,8 @@ RLAPI void SetMousePosition(int x, int y); // Set mouse posit RLAPI void SetMouseOffset(int offsetX, int offsetY); // Set mouse offset RLAPI void SetMouseScale(float scaleX, float scaleY); // Set mouse scaling RLAPI float GetMouseWheelMove(void); // Returns mouse wheel movement Y +RLAPI MouseCursor GetMouseCursor(void); // Returns mouse cursor +RLAPI void SetMouseCursor(MouseCursor cursor); // Set mouse cursor // Input-related functions: touch RLAPI int GetTouchX(void); // Returns touch position X for touch point 0 (relative to screen size) -- cgit v1.2.3