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