mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
62 lines
1.3 KiB
C#
Generated
62 lines
1.3 KiB
C#
Generated
// ------------------------------------------------------------------------------
|
|
// <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 ImGuiSelectableFlagsPrivate : int
|
|
{
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
NoHoldingActiveId = unchecked(1048576),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
SelectOnNav = unchecked(2097152),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
SelectOnClick = unchecked(4194304),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
SelectOnRelease = unchecked(8388608),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
SpanAvailWidth = unchecked(16777216),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
DrawHoveredWhenHeld = unchecked(33554432),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
SetNavIdOnHover = unchecked(67108864),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
NoPadWithHalfSpacing = unchecked(134217728),
|
|
}
|
|
}
|