Enums/ImGuiFocusedFlags.cs
using System;

namespace Duccsoft.ImGui;

[Flags]
public enum ImGuiFocusedFlags
{
	None					= 0, /*
	ChildWindows			= 1 << 0,   
	RootWindow				= 1 << 1,  
	AnyWindow				= 1 << 2,  
	NoPopupHierarchy		= 1 << 3, 
	DockHierarchy			= 1 << 4, 
	RootAndChildWindows		= RootWindow | ChildWindows, */
};