예제 #1
0
파일: Move.cs 프로젝트: kevinhascode/GoGame
 public Move(Stone stonePlaced)
 {
     this.StonePlaced = stonePlaced;
     this.ChainsKilled = new List<Chain>();
 }
예제 #2
0
파일: Move.cs 프로젝트: kevinhascode/GoGame
 public Move(Stone stonePlaced, List<Chain> chainsKilled)
 {
     this.StonePlaced = stonePlaced;
     this.ChainsKilled = chainsKilled;
 }
예제 #3
0
		private StoneFactory()
		{
			blackstone = new Stone(Color.Black);
			whitestone = new Stone(Color.White);
		}