mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-14 03:25:38 +01:00
18 lines
345 B
C#
18 lines
345 B
C#
|
namespace ImGuiNET
|
||
|
{
|
||
|
[System.Flags]
|
||
|
public enum ImGuiComboFlags
|
||
|
{
|
||
|
None = 0,
|
||
|
PopupAlignLeft = 1,
|
||
|
HeightSmall = 2,
|
||
|
HeightRegular = 4,
|
||
|
HeightLarge = 8,
|
||
|
HeightLargest = 16,
|
||
|
NoArrowButton = 32,
|
||
|
NoPreview = 64,
|
||
|
WidthFitPreview = 128,
|
||
|
HeightMask = 30,
|
||
|
}
|
||
|
}
|