mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-10 02:02:54 +01:00
16 lines
313 B
C#
16 lines
313 B
C#
namespace ImGuiNET
|
|
{
|
|
[System.Flags]
|
|
public enum ImGuiDockNodeFlags
|
|
{
|
|
None = 0,
|
|
KeepAliveOnly = 1,
|
|
NoDockingOverCentralNode = 4,
|
|
PassthruCentralNode = 8,
|
|
NoDockingSplit = 16,
|
|
NoResize = 32,
|
|
AutoHideTabBar = 64,
|
|
NoUndocking = 128,
|
|
}
|
|
}
|