Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

24 righe
339 B

  1. using System;
  2. namespace SUISS.Cloud
  3. {
  4. public interface ILeaderboardEntry
  5. {
  6. string Playername { get; }
  7. string InstallUuid { get; }
  8. int PrimaryScore { get; }
  9. int SecondaryScore { get; }
  10. int TertiaryScore { get; }
  11. int QuaternaryScore { get; }
  12. int Votes { get; }
  13. bool IslandReady { get; }
  14. }
  15. }