aboutsummaryrefslogtreecommitdiffstats
path: root/src/rook.cpp
blob: 166e1143a4ae632efc75c06872f6f0a836d737dc (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
 *
 * -----------------------------------------------------------------------------
 *
 * Rook class implementation
 *
 */

#include "chess_piece.hpp"

using namespace ymhChessAI;


Rook::Rook() : ChessPiece() {
}

Rook::Rook(const int& x, const int& y) : ChessPiece(x, y) {
}

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