diff options
| author | Chance Snow <[email protected]> | 2020-10-21 03:55:52 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-10-21 10:55:52 +0200 |
| commit | 9833fe45eb5cd6cfd3593b7f4d1aae9cf7367729 (patch) | |
| tree | b231ff0cb2fc2c9ba43858f6ac7f272aa1efe077 /projects/Notepad++ | |
| parent | eb3e9e4df53c0908a4ae3dd91cbe0e3a42134794 (diff) | |
| download | raylib-9833fe45eb5cd6cfd3593b7f4d1aae9cf7367729.tar.gz raylib-9833fe45eb5cd6cfd3593b7f4d1aae9cf7367729.zip | |
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
Diffstat (limited to 'projects/Notepad++')
| -rw-r--r-- | projects/Notepad++/raylib_npp_parser/raylib_to_parse.h | 2 |
1 files changed, 2 insertions, 0 deletions
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) |
