mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-10 02:02:54 +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,
|
||
|
}
|
||
|
}
|