mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-10 02:02:54 +01:00
17 lines
318 B
C#
17 lines
318 B
C#
|
namespace ImGuiNET
|
||
|
{
|
||
|
[System.Flags]
|
||
|
public enum ImGuiTabItemFlags
|
||
|
{
|
||
|
None = 0,
|
||
|
UnsavedDocument = 1,
|
||
|
SetSelected = 2,
|
||
|
NoCloseWithMiddleMouseButton = 4,
|
||
|
NoPushId = 8,
|
||
|
NoTooltip = 16,
|
||
|
NoReorder = 32,
|
||
|
Leading = 64,
|
||
|
Trailing = 128,
|
||
|
}
|
||
|
}
|