mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 13:14:17 +01:00
move bindings around
This commit is contained in:
parent
1bce618684
commit
b5a8bfe399
546 changed files with 8 additions and 8 deletions
|
|
@ -0,0 +1,77 @@
|
|||
// ------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
// ------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using HexaGen.Runtime;
|
||||
using System.Numerics;
|
||||
|
||||
namespace Dalamud.Bindings.ImGui
|
||||
{
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
[Flags]
|
||||
public enum ImGuiMouseCursor : int
|
||||
{
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
None = unchecked(-1),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
Arrow = unchecked(0),
|
||||
|
||||
/// <summary>
|
||||
/// When hovering over InputText, etc.<br/>
|
||||
/// </summary>
|
||||
TextInput = unchecked(1),
|
||||
|
||||
/// <summary>
|
||||
/// (Unused by Dear ImGui functions)<br/>
|
||||
/// </summary>
|
||||
ResizeAll = unchecked(2),
|
||||
|
||||
/// <summary>
|
||||
/// When hovering over a horizontal border<br/>
|
||||
/// </summary>
|
||||
ResizeNs = unchecked(3),
|
||||
|
||||
/// <summary>
|
||||
/// When hovering over a vertical border or a column<br/>
|
||||
/// </summary>
|
||||
ResizeEw = unchecked(4),
|
||||
|
||||
/// <summary>
|
||||
/// When hovering over the bottom-left corner of a window<br/>
|
||||
/// </summary>
|
||||
ResizeNesw = unchecked(5),
|
||||
|
||||
/// <summary>
|
||||
/// When hovering over the bottom-right corner of a window<br/>
|
||||
/// </summary>
|
||||
ResizeNwse = unchecked(6),
|
||||
|
||||
/// <summary>
|
||||
/// (Unused by Dear ImGui functions. Use for e.g. hyperlinks)<br/>
|
||||
/// </summary>
|
||||
Hand = unchecked(7),
|
||||
|
||||
/// <summary>
|
||||
/// When hovering something with disallowed interaction. Usually a crossed circle.<br/>
|
||||
/// </summary>
|
||||
NotAllowed = unchecked(8),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
Count = unchecked(9),
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue