15 lines
268 B
C#
15 lines
268 B
C#
namespace Facepunch.Steamworks.Data
|
|
{
|
|
public enum LeaderboardSort : int
|
|
{
|
|
/// <summary>
|
|
/// The top-score is the lowest number
|
|
/// </summary>
|
|
Ascending = 1,
|
|
|
|
/// <summary>
|
|
/// The top-score is the highest number
|
|
/// </summary>
|
|
Descending = 2,
|
|
}
|
|
} |