aboutsummaryrefslogtreecommitdiffstats
path: root/src/pawn.cpp
blob: c1f172f602c61698134ee4ae7bdbb5fc53702061 (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
 *
 * -----------------------------------------------------------------------------
 *
 * Pawn class implementation
 *
 */

#include "chess_piece.hpp"

using namespace ymhChessAI;


Pawn::Pawn() : ChessPiece() {
}

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

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