Constants

sorting.inc

Contains sorting orders.

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

Data types for ADT Array Sorts

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

Custom sorting functions below.