aboutsummaryrefslogtreecommitdiffstats
path: root/src/knight.cpp
blob: c40921f41cb4ceac9161101771bc44064d6d0a3c (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
 *
 * -----------------------------------------------------------------------------
 *
 * Knight class implementation
 *
 */

#include "chess_piece.hpp"

using namespace ymhChessAI;


Knight::Knight() : ChessPiece() {
}

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

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