Show More
Commit Description:
Tidy code.
Commit Description:
Tidy code.
File last commit:
Show/Diff file:
Action:
ImGui.NET/Generated/ImDrawCornerFlags.gen.cs
17 lines | 370 B | text/x-csharp | CSharpLexer
namespace ImGuiNET
{
[System.Flags]
public enum ImDrawCornerFlags
{
None = 0,
TopLeft = 1 << 0,
TopRight = 1 << 1,
BotLeft = 1 << 2,
BotRight = 1 << 3,
Top = TopLeft | TopRight,
Bot = BotLeft | BotRight,
Left = TopLeft | BotLeft,
Right = TopRight | BotRight,
All = 0xF,
}
}