Пример #1
0
 internal Cell(Board board, Hex hex) : this(board, hex, Pieces.NoPiece)
 {
 }
Пример #2
0
 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
 internal Wall(Board board, Hex hex) : base(board, hex, Pieces.NoPiece)
 {
 }