namespace Facepunch.Steamworks.Data
{
public enum LeaderboardDisplay : int
{
///
/// The score is just a simple numerical value
///
Numeric = 1,
///
/// The score represents a time, in seconds
///
TimeSeconds = 2,
///
/// The score represents a time, in milliseconds
///
TimeMilliSeconds = 3,
}
}