public void PrintSavedMatches() { foreach (MatchNetworkStatistics match in matches) { match.Print(); } matches.Clear(); lastMatch = null; }
public void StartRecordingNewMatch(int matchId, ushort playerTmpId) { lastMatch = new MatchNetworkStatistics(matchId, playerTmpId); matches.Add(lastMatch); }