aboutsummaryrefslogtreecommitdiffstats
path: root/src/queen.cpp
blob: 897237a79c0951a9e473b9b5d3b848c4ca98ef51 (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
 *
 * -----------------------------------------------------------------------------
 *
 * Queen class implementation
 *
 */

#include "chess_piece.hpp"

using namespace ymhChessAI;


Queen::Queen() : ChessPiece() {
}

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

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