コード例 #1
0
 public MatchEndedEventArgs(Match match)
 {
     this.Match = new Match(match);
 }
コード例 #2
0
ファイル: Match.cs プロジェクト: r0llup/TennisPong_WinForms
 public Match(Match match)
 {
     this.ListeSet = new LinkedList<Set>(match.ListeSet);
     this.Score1 = new Score(match.Score1);
     this.Score2 = new Score(match.Score2);
 }