aboutsummaryrefslogtreecommitdiffstats
path: root/src/knight.cpp
blob: 6b7f5ac0fc3778e3848124eb57b654189fef719b (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
26
/*
 *
 * author: Yann Herklotz
 * username: ymherklotz
 * email: ymherklotz@gmail.com
 * date created: 13/01/17
 *
 * -----------------------------------------------------------------------------
 *
 * Knight class implementation
 *
 */

#include "chess_piece.hpp"

using namespace ymhChessAI;


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

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

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