// ------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // // ------------------------------------------------------------------------------ using System; using HexaGen.Runtime; using System.Numerics; namespace Dalamud.Bindings.ImGui { /// /// To be documented. /// [Flags] public enum ImGuiMouseCursor : int { /// /// To be documented. /// None = unchecked(-1), /// /// To be documented. /// Arrow = unchecked(0), /// /// When hovering over InputText, etc.
///
TextInput = unchecked(1), /// /// (Unused by Dear ImGui functions)
///
ResizeAll = unchecked(2), /// /// When hovering over a horizontal border
///
ResizeNs = unchecked(3), /// /// When hovering over a vertical border or a column
///
ResizeEw = unchecked(4), /// /// When hovering over the bottom-left corner of a window
///
ResizeNesw = unchecked(5), /// /// When hovering over the bottom-right corner of a window
///
ResizeNwse = unchecked(6), /// /// (Unused by Dear ImGui functions. Use for e.g. hyperlinks)
///
Hand = unchecked(7), /// /// When hovering something with disallowed interaction. Usually a crossed circle.
///
NotAllowed = unchecked(8), /// /// To be documented. /// Count = unchecked(9), } }