mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
43 lines
918 B
C#
Generated
43 lines
918 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 ImPlotBin : int
|
|
{
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
Sqrt = unchecked(-1),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
Sturges = unchecked(-2),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
Rice = unchecked(-3),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
Scott = unchecked(-4),
|
|
}
|
|
}
|