// ------------------------------------------------------------------------------
//
// 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 ImDrawFlags : int
{
///
/// To be documented.
///
None = unchecked(0),
///
/// To be documented.
///
Closed = unchecked(1),
///
/// To be documented.
///
RoundCornersTopLeft = unchecked(16),
///
/// To be documented.
///
RoundCornersTopRight = unchecked(32),
///
/// To be documented.
///
RoundCornersBottomLeft = unchecked(64),
///
/// To be documented.
///
RoundCornersBottomRight = unchecked(128),
///
/// To be documented.
///
RoundCornersNone = unchecked(256),
///
/// To be documented.
///
RoundCornersTop = unchecked(48),
///
/// To be documented.
///
RoundCornersBottom = unchecked(192),
///
/// To be documented.
///
RoundCornersLeft = unchecked(80),
///
/// To be documented.
///
RoundCornersRight = unchecked(160),
///
/// To be documented.
///
RoundCornersAll = unchecked(240),
///
/// To be documented.
///
RoundCornersDefault = RoundCornersAll,
///
/// To be documented.
///
RoundCornersMask = unchecked(496),
}
}