Não pode escolher mais do que 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- 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; }
- }
- }
|