mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-10 02:02:54 +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,
|
|
}
|
|
}
|