BalloonsPop.Highscore.HighscoreTable.HighscoreTable C# (CSharp) Метод

HighscoreTable() публичный Метод

Initializes a new instance of the HighscoreTable class.
public HighscoreTable ( List playerScores = null ) : System
playerScores List A list of player scores
Результат System
        public HighscoreTable(List<PlayerScore> playerScores = null)
        {
            this.Table = playerScores ?? new List<PlayerScore>();
        }