コード例 #1
0
 public void PrintSavedMatches()
 {
     foreach (MatchNetworkStatistics match in matches)
     {
         match.Print();
     }
     matches.Clear();
     lastMatch = null;
 }
コード例 #2
0
 public void StartRecordingNewMatch(int matchId, ushort playerTmpId)
 {
     lastMatch = new MatchNetworkStatistics(matchId, playerTmpId);
     matches.Add(lastMatch);
 }