mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-10 02:02:54 +01:00
15 lines
270 B
C#
15 lines
270 B
C#
|
namespace ImGuiNET
|
||
|
{
|
||
|
[System.Flags]
|
||
|
public enum ImGuiFocusedFlags
|
||
|
{
|
||
|
None = 0,
|
||
|
ChildWindows = 1,
|
||
|
RootWindow = 2,
|
||
|
AnyWindow = 4,
|
||
|
NoPopupHierarchy = 8,
|
||
|
DockHierarchy = 16,
|
||
|
RootAndChildWindows = 3,
|
||
|
}
|
||
|
}
|