namespace Raylib_cs
{
/// Mouse cursor
public enum MouseCursor
{
///
/// Default pointer shape
///
MOUSE_CURSOR_DEFAULT = 0,
///
/// Arrow shape
///
MOUSE_CURSOR_ARROW = 1,
///
/// Text writing cursor shape
///
MOUSE_CURSOR_IBEAM = 2,
///
/// Cross shape
///
MOUSE_CURSOR_CROSSHAIR = 3,
///
/// Pointing hand cursor
///
MOUSE_CURSOR_POINTING_HAND = 4,
///
/// Horizontal resize/move arrow shape
///
MOUSE_CURSOR_RESIZE_EW = 5,
///
/// Vertical resize/move arrow shape
///
MOUSE_CURSOR_RESIZE_NS = 6,
///
/// Top-left to bottom-right diagonal resize/move arrow shape
///
MOUSE_CURSOR_RESIZE_NWSE = 7,
///
/// The top-right to bottom-left diagonal resize/move arrow shape
///
MOUSE_CURSOR_RESIZE_NESW = 8,
///
/// The omni-directional resize/move cursor shape
///
MOUSE_CURSOR_RESIZE_ALL = 9,
///
/// The operation-not-allowed shape
///
MOUSE_CURSOR_NOT_ALLOWED = 10
}
}