// ------------------------------------------------------------------------------ // // 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 ImGuiCond : int { /// /// No condition (always set the variable), same as _Always
///
None = unchecked(0), /// /// No condition (always set the variable), same as _None
///
Always = unchecked(1), /// /// Set the variable once per runtime session (only the first call will succeed)
///
Once = unchecked(2), /// /// Set the variable if the objectwindow has no persistently saved data (no entry in .ini file)
///
FirstUseEver = unchecked(4), /// /// Set the variable if the objectwindow is appearing after being hiddeninactive (or the first time)
///
Appearing = unchecked(8), } }