Dalamud/imgui/Dalamud.Bindings.ImPlot/Generated/Enums/ImPlotScale.cs
2025-04-06 21:08:34 +02:00

43 lines
917 B
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;
using Dalamud.Bindings.ImGui;
namespace Dalamud.Bindings.ImPlot
{
/// <summary>
/// To be documented.
/// </summary>
[Flags]
public enum ImPlotScale : int
{
/// <summary>
/// To be documented.
/// </summary>
Linear = unchecked(0),
/// <summary>
/// To be documented.
/// </summary>
Time = unchecked(1),
/// <summary>
/// To be documented.
/// </summary>
Log10 = unchecked(2),
/// <summary>
/// To be documented.
/// </summary>
SymLog = unchecked(3),
}
}