- using System;
-
- namespace SUISS.Cloud
- {
- public interface ILeaderboardEntry
- {
- string Playername { get; }
-
- string InstallUuid { get; }
-
- int PrimaryScore { get; }
-
- int SecondaryScore { get; }
-
- int TertiaryScore { get; }
-
- int QuaternaryScore { get; }
-
- int Votes { get; }
-
- bool IslandReady { get; }
- }
- }
|