mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-12 19:05:30 +01:00
10 lines
135 B
C#
10 lines
135 B
C#
|
namespace ImGuiNET
|
||
|
{
|
||
|
public enum ImGuiSortDirection
|
||
|
{
|
||
|
None = 0,
|
||
|
Ascending = 1,
|
||
|
Descending = 2,
|
||
|
}
|
||
|
}
|