Files
LuaCsForBarotraumaEP/Libraries/Facepunch.Steamworks/Enum/LeaderboardSort.cs
2020-03-04 13:04:10 +01:00

15 lines
258 B
C#

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