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