MoonWorksImGuiExample/lib/ImGui.NET/Generated/ImGuiKeyModFlags.gen.cs

13 lines
178 B
C#
Raw Normal View History

2022-03-04 01:20:00 +00:00
namespace ImGuiNET
{
[System.Flags]
public enum ImGuiKeyModFlags
{
None = 0,
Ctrl = 1,
Shift = 2,
Alt = 4,
Super = 8,
}
}