mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-12 19:05:30 +01:00
13 lines
169 B
C#
13 lines
169 B
C#
|
namespace ImGuiNET
|
||
|
{
|
||
|
public enum ImGuiDir
|
||
|
{
|
||
|
None = -1,
|
||
|
Left = 0,
|
||
|
Right = 1,
|
||
|
Up = 2,
|
||
|
Down = 3,
|
||
|
COUNT = 4,
|
||
|
}
|
||
|
}
|