예제 #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)
 {
 }