コード例 #1
0
 private void FillTestedScoreBoard(ScoreboardManager obj, string path)
 {
     for (int i = 0; i < 20; i++)
     {
         string currentPlayer      = "Player" + i;
         int    currentPlayerScore = (i + 1) * 100;
         obj.UpdateScoreBoard(currentPlayerScore, currentPlayer);
     }
 }