Fork of mellinoe/ImGui.NET, an ImGui wrapper for .NET, which includes access to internal functions.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
359 B

namespace ImGuiNET
{
[System.Flags]
public enum ImGuiConfigFlags
{
NavEnableKeyboard = 1 << 0,
NavEnableGamepad = 1 << 1,
NavEnableSetMousePos = 1 << 2,
NavNoCaptureKeyboard = 1 << 3,
NoMouse = 1 << 4,
NoMouseCursorChange = 1 << 5,
IsSRGB = 1 << 20,
IsTouchScreen = 1 << 21,
}
}