10 lines
135 B
C#
10 lines
135 B
C#
|
namespace ImGuiNET
|
||
|
{
|
||
|
public enum ImGuiSortDirection
|
||
|
{
|
||
|
None = 0,
|
||
|
Ascending = 1,
|
||
|
Descending = 2,
|
||
|
}
|
||
|
}
|