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