Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- 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; }
- }
- }
|