예제 #1
0
 public Knight(colorPlayer color, int x, int y) : base(color, x, y)
 {
     this.PieceType = PiecesTypeEnum.Knight;
 }
예제 #2
0
 public Queen(colorPlayer color, int x, int y) : base(color, x, y)
 {
     this.PieceType = PiecesTypeEnum.Queen;
 }
예제 #3
0
파일: Rook.cs 프로젝트: fedea12345/ChessDev
 public Rook(colorPlayer color, int x, int y) : base(color, x, y)
 {
     this.PieceType = PiecesTypeEnum.Rook;
 }
예제 #4
0
 public Bishop(colorPlayer color, int x, int y) : base(color, x, y)
 {
     PieceType = PiecesTypeEnum.Bishop;
 }
예제 #5
0
파일: Pawn.cs 프로젝트: fedea12345/ChessDev
 public Pawn(colorPlayer color, int x, int y) : base(color, x, y)
 {
     this.PieceType = PiecesTypeEnum.Pawn;
 }
예제 #6
0
 public King(colorPlayer color, int x, int y) : base(color, x, y)
 {
     this.PieceType = PiecesTypeEnum.King;
 }