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>();
        }