Dalamud/imgui/Dalamud.Bindings.ImGui/Generated/Enums/ImGuiInputTextFlagsPrivate.cs
2025-07-20 01:24:17 +02:00

37 lines
857 B
C#

// ------------------------------------------------------------------------------
// <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 ImGuiInputTextFlagsPrivate : int
{
/// <summary>
/// To be documented.
/// </summary>
Multiline = unchecked(67108864),
/// <summary>
/// To be documented.
/// </summary>
NoMarkEdited = unchecked(134217728),
/// <summary>
/// To be documented.
/// </summary>
MergedItem = unchecked(268435456),
}
}