mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
92 lines
1.8 KiB
C#
Generated
92 lines
1.8 KiB
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;
|
|
|
|
namespace Dalamud.Bindings.ImGui
|
|
{
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
[Flags]
|
|
public enum ImDrawFlags : int
|
|
{
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
None = unchecked(0),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
Closed = unchecked(1),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
RoundCornersTopLeft = unchecked(16),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
RoundCornersTopRight = unchecked(32),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
RoundCornersBottomLeft = unchecked(64),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
RoundCornersBottomRight = unchecked(128),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
RoundCornersNone = unchecked(256),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
RoundCornersTop = unchecked(48),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
RoundCornersBottom = unchecked(192),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
RoundCornersLeft = unchecked(80),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
RoundCornersRight = unchecked(160),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
RoundCornersAll = unchecked(240),
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
RoundCornersDefault = RoundCornersAll,
|
|
|
|
/// <summary>
|
|
/// To be documented.
|
|
/// </summary>
|
|
RoundCornersMask = unchecked(496),
|
|
}
|
|
}
|