Constants

sorting.inc

SortMethod

SortMethod

Contains sorting orders.

enum SortMethod
{
	Sort_Ascending = 0,
	Sort_Descending,
	Sort_Random,
};

SortType

SortType

Data types for ADT Array Sorts

enum SortType
{
	Sort_Integer = 0,
	Sort_Float,
 	Sort_String,
};

Custom sorting functions below.