Code/Enums/ImGuiHoveredFlags.cs
using System;

namespace Duccsoft.ImGui;

[Flags]
public enum ImGuiHoveredFlags
{
	None							= 0,  /*
	ChildWindows					= 1 << 0,
	RootWindow						= 1 << 1,  
	AnyWindow						= 1 << 2,   
	NoPopupHierarchy				= 1 << 3,
	DockHierarchy					= 1 << 4,   
	AllowWhenBlockedByPopup			= 1 << 5,   
	AllowWhenBlockedByActiveItem	= 1 << 7,
	AllowWhenOverlappedByItem		= 1 << 8,   
	AllowWhenOverlappedByWindow		= 1 << 9, 
	AllowWhenDisabled				= 1 << 10,  
	NoNavOverride					= 1 << 11,  
	AllowWhenOverlapped				= AllowWhenOverlappedByItem | AllowWhenOverlappedByWindow,
	RectOnly						= AllowWhenBlockedByPopup | AllowWhenBlockedByActiveItem | AllowWhenOverlapped,
	RootAndChildWindows				= RootWindow | ChildWindows,
	ForTooltip						= 1 << 12,
	DelayNone						= 1 << 14, 
	DelayShort						= 1 << 15,
	DelayNormal						= 1 << 16,
	NoSharedDelay					= 1 << 17, */
};