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