Beispiel #1
0
 public static void GetProgress()
 {
     foreach (var item in ScoreTrackerController.trackedList)
     {
         var(MinG, MaxG, MinR, MaxR, ProgressG, ProgressR) = FromDB.GetMinMax(item.playerID);
         Console.WriteLine(item.playerName + "\'s progress, since the beginning of the recordings amounts to:\n" +
                           "global " + ProgressG.ToString() + " (best " + MinG.ToString() + ") (worst " + MaxG.ToString() + ")\n" +
                           "regional " + ProgressR.ToString() + " (best " + MinR.ToString() + ") (worst " + MaxG.ToString() + ")\n\n");
     }
 }