コード例 #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
ファイル: StoneFactory.cs プロジェクト: tian1ll1/WPF_Examples
		private StoneFactory()
		{
			blackstone = new Stone(Color.Black);
			whitestone = new Stone(Color.White);
		}