20 lines
444 B
C#
20 lines
444 B
C#
|
namespace ImGuiNET
|
||
|
{
|
||
|
[System.Flags]
|
||
|
public enum ImGuiHoveredFlags
|
||
|
{
|
||
|
None = 0,
|
||
|
ChildWindows = 1,
|
||
|
RootWindow = 2,
|
||
|
AnyWindow = 4,
|
||
|
NoPopupHierarchy = 8,
|
||
|
DockHierarchy = 16,
|
||
|
AllowWhenBlockedByPopup = 32,
|
||
|
AllowWhenBlockedByActiveItem = 128,
|
||
|
AllowWhenOverlapped = 256,
|
||
|
AllowWhenDisabled = 512,
|
||
|
RectOnly = 416,
|
||
|
RootAndChildWindows = 3,
|
||
|
}
|
||
|
}
|