// ------------------------------------------------------------------------------ // // 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; using Dalamud.Bindings.ImGui; namespace Dalamud.Bindings.ImPlot { /// /// To be documented. /// [Flags] public enum ImPlotLocation : int { /// /// To be documented. /// Center = unchecked(0), /// /// To be documented. /// North = unchecked(1), /// /// To be documented. /// South = unchecked(2), /// /// To be documented. /// West = unchecked(4), /// /// To be documented. /// East = unchecked(8), /// /// To be documented. /// NorthWest = unchecked(5), /// /// To be documented. /// NorthEast = unchecked(9), /// /// To be documented. /// SouthWest = unchecked(6), /// /// To be documented. /// SouthEast = unchecked(10), } }