mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-12 19:05:30 +01:00
13 lines
175 B
C#
13 lines
175 B
C#
namespace ImGuiNET
|
|
{
|
|
[System.Flags]
|
|
public enum ImGuiModFlags
|
|
{
|
|
None = 0,
|
|
Ctrl = 1,
|
|
Shift = 2,
|
|
Alt = 4,
|
|
Super = 8,
|
|
}
|
|
}
|