Handbook
Glossary
MouseCursor
Vocabulary
raylib
Variable description
An enum representing the various states the cursor can be in. This is used to change the cursor icon / shape.
Enum members
MOUSE_CURSOR_DEFAULT
MOUSE_CURSOR_ARROW
MOUSE_CURSOR_IBEAM
MOUSE_CURSOR_CROSSHAIR
MOUSE_CURSOR_POINTING_HAND
MOUSE_CURSOR_RESIZE_EW
MOUSE_CURSOR_RESIZE_NS
MOUSE_CURSOR_RESIZE_NWSE
MOUSE_CURSOR_RESIZE_NESW
MOUSE_CURSOR_RESIZE_ALL
MOUSE_CURSOR_NOT_ALLOWED
Definition
USING:
alien.syntax
;
IN:
raylib
ENUM:
MouseCursor
{
MOUSE_CURSOR_DEFAULT
0
}
{
MOUSE_CURSOR_ARROW
1
}
{
MOUSE_CURSOR_IBEAM
2
}
{
MOUSE_CURSOR_CROSSHAIR
3
}
{
MOUSE_CURSOR_POINTING_HAND
4
}
{
MOUSE_CURSOR_RESIZE_EW
5
}
{
MOUSE_CURSOR_RESIZE_NS
6
}
{
MOUSE_CURSOR_RESIZE_NWSE
7
}
{
MOUSE_CURSOR_RESIZE_NESW
8
}
{
MOUSE_CURSOR_RESIZE_ALL
9
}
{
MOUSE_CURSOR_NOT_ALLOWED
10
}
;