aboutsummaryrefslogtreecommitdiffstats
path: root/src/bishop.cpp
blob: 4894be50b91b5c3aab0b8fef77af66957ec1a49c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 *
 * author: Yann Herklotz
 * username: ymherklotz
 * email: ymherklotz@gmail.com
 *
 * -----------------------------------------------------------------------------
 *
 * Bishop class implementation
 *
 */

#include "chess_piece.hpp"

using namespace ymhChessAI;


Bishop::Bishop() : ChessPiece() {
}

Bishop::Bishop(const int& x, const int& y, const Colour& colour) : ChessPiece(x, y, colour) {
}

void Bishop::move(const int& x, const int& y) {
}