コード例 #1
0
ファイル: Cell.cs プロジェクト: vfridell/Gipf
 internal Cell(Board board, Hex hex) : this(board, hex, Pieces.NoPiece)
 {
 }
コード例 #2
0
ファイル: Cell.cs プロジェクト: vfridell/Gipf
 internal Cell(Board board, Hex hex, GipfPiece piece)
 {
     _board = board; _hex = hex; Piece = piece;
 }
コード例 #3
0
 public Move(Hex from, Hex to, bool isGipf)  : this(from, to, null, null, isGipf)
 {
 }
コード例 #4
0
 public Move(Hex to, bool isGipf) : this(Hex.InvalidHex, to, null, null, isGipf)
 {
 }
コード例 #5
0
ファイル: Wall.cs プロジェクト: vfridell/Gipf
 internal Wall(Board board, Hex hex) : base(board, hex, Pieces.NoPiece)
 {
 }