mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-12 19:05:30 +01:00
14 lines
245 B
C#
14 lines
245 B
C#
|
namespace ImGuiNET
|
||
|
{
|
||
|
[System.Flags]
|
||
|
public enum ImGuiSelectableFlags
|
||
|
{
|
||
|
None = 0,
|
||
|
DontClosePopups = 1,
|
||
|
SpanAllColumns = 2,
|
||
|
AllowDoubleClick = 4,
|
||
|
Disabled = 8,
|
||
|
AllowOverlap = 16,
|
||
|
}
|
||
|
}
|