Fork of mellinoe/ImGui.NET, an ImGui wrapper for .NET, which includes access to internal functions.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

34 lines
757 B

namespace ImGuiNET
{
/// <summary>
/// Enumeration for GetMouseCursor()
/// </summary>
public enum MouseCursorKind
{
Arrow = 0,
/// <summary>
/// When hovering over InputText, etc.
/// </summary>
TextInput,
/// <summary>
/// Unused
/// </summary>
Move,
/// <summary>
/// Unused
/// </summary>
ResizeNS,
/// <summary>
/// When hovering over a column
/// </summary>
ResizeEW,
/// <summary>
/// Unused
/// </summary>
ResizeNESW,
/// <summary>
/// When hovering over the bottom-right corner of a window
/// </summary>
ResizeNWSE,
}
}