mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-09-09 03:01:41 -04:00
61 lines
1.5 KiB
C#
61 lines
1.5 KiB
C#
namespace Raylib_cs
|
|
{
|
|
/// <summary>Mouse cursor</summary>
|
|
public enum MouseCursor
|
|
{
|
|
/// <summary>
|
|
/// Default pointer shape
|
|
/// </summary>
|
|
MOUSE_CURSOR_DEFAULT = 0,
|
|
|
|
/// <summary>
|
|
/// Arrow shape
|
|
/// </summary>
|
|
MOUSE_CURSOR_ARROW = 1,
|
|
|
|
/// <summary>
|
|
/// Text writing cursor shape
|
|
/// </summary>
|
|
MOUSE_CURSOR_IBEAM = 2,
|
|
|
|
/// <summary>
|
|
/// Cross shape
|
|
/// </summary>
|
|
MOUSE_CURSOR_CROSSHAIR = 3,
|
|
|
|
/// <summary>
|
|
/// Pointing hand cursor
|
|
/// </summary>
|
|
MOUSE_CURSOR_POINTING_HAND = 4,
|
|
|
|
/// <summary>
|
|
/// Horizontal resize/move arrow shape
|
|
/// </summary>
|
|
MOUSE_CURSOR_RESIZE_EW = 5,
|
|
|
|
/// <summary>
|
|
/// Vertical resize/move arrow shape
|
|
/// </summary>
|
|
MOUSE_CURSOR_RESIZE_NS = 6,
|
|
|
|
/// <summary>
|
|
/// Top-left to bottom-right diagonal resize/move arrow shape
|
|
/// </summary>
|
|
MOUSE_CURSOR_RESIZE_NWSE = 7,
|
|
|
|
/// <summary>
|
|
/// The top-right to bottom-left diagonal resize/move arrow shape
|
|
/// </summary>
|
|
MOUSE_CURSOR_RESIZE_NESW = 8,
|
|
|
|
/// <summary>
|
|
/// The omni-directional resize/move cursor shape
|
|
/// </summary>
|
|
MOUSE_CURSOR_RESIZE_ALL = 9,
|
|
|
|
/// <summary>
|
|
/// The operation-not-allowed shape
|
|
/// </summary>
|
|
MOUSE_CURSOR_NOT_ALLOWED = 10
|
|
}
|
|
} |