Ejemplo n.º 1
0
 public CurrentPlayer(Player p, SelectedPieceControl c, SelectionControl s)
     : this(p)
 {
     c.player = this;
     s.player = this;
     this.control = c;
     this.selectControl = s;
 }
Ejemplo n.º 2
0
 public CurrentPlayer convertToCurrentPlayer(SelectedPieceControl c, SelectionControl s)
 {
     return new CurrentPlayer(this, c, s);
 }