Show More
Commit Description:
Initial version of logging....
Commit Description:
Initial version of logging. (grafted from 95ee5e1df2d8c277c703b10da6ad36f166d78716)
File last commit:
Show/Diff file:
Action:
ImGui.NET/Generated/ImGuiComboFlags.gen.cs
16 lines | 401 B | text/x-csharp | CSharpLexer
namespace ImGuiNET
{
[System.Flags]
public enum ImGuiComboFlags
{
None = 0,
PopupAlignLeft = 1 << 0,
HeightSmall = 1 << 1,
HeightRegular = 1 << 2,
HeightLarge = 1 << 3,
HeightLargest = 1 << 4,
NoArrowButton = 1 << 5,
NoPreview = 1 << 6,
HeightMask = HeightSmall | HeightRegular | HeightLarge | HeightLargest,
}
}