public Move(Stone stonePlaced) { this.StonePlaced = stonePlaced; this.ChainsKilled = new List<Chain>(); }
public Move(Stone stonePlaced, List<Chain> chainsKilled) { this.StonePlaced = stonePlaced; this.ChainsKilled = chainsKilled; }
private StoneFactory() { blackstone = new Stone(Color.Black); whitestone = new Stone(Color.White); }