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