public SetEndedEventArgs(int joueur, Set set) { this.Joueur = joueur; this.Set = new Set(set); }
public Set(Set set) { this.ListeJeu = new LinkedList<Jeu>(set.ListeJeu); this.Score1 = set.Score1; this.Score2 = set.Score2; }