Files
BoneSync/Facepunch.Steamworks/Enum/LeaderboardSort.cs
2025-02-25 12:58:41 +02:00

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,
}
}