MoonWorksDearImGuiScaffold/lib/ImGui.NET/Generated/ImGuiHoveredFlags.gen.cs

29 lines
729 B
C#
Raw Permalink Normal View History

2023-12-22 00:03:12 +01:00
namespace ImGuiNET
{
[System.Flags]
public enum ImGuiHoveredFlags
{
None = 0,
ChildWindows = 1,
RootWindow = 2,
AnyWindow = 4,
NoPopupHierarchy = 8,
DockHierarchy = 16,
AllowWhenBlockedByPopup = 32,
AllowWhenBlockedByActiveItem = 128,
AllowWhenOverlappedByItem = 256,
AllowWhenOverlappedByWindow = 512,
AllowWhenDisabled = 1024,
NoNavOverride = 2048,
AllowWhenOverlapped = 768,
RectOnly = 928,
RootAndChildWindows = 3,
ForTooltip = 4096,
Stationary = 8192,
DelayNone = 16384,
DelayShort = 32768,
DelayNormal = 65536,
NoSharedDelay = 131072,
}
}