mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 21:24:16 +01:00
move bindings around
This commit is contained in:
parent
1bce618684
commit
b5a8bfe399
546 changed files with 8 additions and 8 deletions
|
|
@ -1,52 +0,0 @@
|
|||
// ------------------------------------------------------------------------------
|
||||
// <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 ImGuiSliderFlags : int
|
||||
{
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
None = unchecked(0),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
AlwaysClamp = unchecked(16),
|
||||
|
||||
/// <summary>
|
||||
/// Make the widget logarithmic (linear otherwise). Consider using ImGuiSliderFlags_NoRoundToFormat with this if using a format-string with small amount of digits.<br/>
|
||||
/// </summary>
|
||||
Logarithmic = unchecked(32),
|
||||
|
||||
/// <summary>
|
||||
/// Disable rounding underlying value to match precision of the display format string (e.g. %.3f values are rounded to those 3 digits).<br/>
|
||||
/// </summary>
|
||||
NoRoundToFormat = unchecked(64),
|
||||
|
||||
/// <summary>
|
||||
/// Disable CTRL+Click or Enter key allowing to input text directly into the widget.<br/>
|
||||
/// </summary>
|
||||
NoInput = unchecked(128),
|
||||
|
||||
/// <summary>
|
||||
/// [Internal] We treat using those bits as being potentially a 'float power' argument from the previous API that has got miscast to this enum, and will trigger an assert if needed.<br/>
|
||||
/// </summary>
|
||||
InvalidMask = unchecked(1879048207),
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue