aboutsummaryrefslogtreecommitdiffstats
path: root/include/chess_board.hpp
diff options
context:
space:
mode:
authorymherklotz <ymherklotz@gmail.com>2017-01-16 01:12:25 +0000
committerymherklotz <ymherklotz@gmail.com>2017-01-16 01:12:25 +0000
commit088b948122cbf24dd9dc1dfedf4be2724bab2157 (patch)
tree4a9610f9ad3e3afbb98510478bd3e2969baad136 /include/chess_board.hpp
parent1f138d96ab7f517e7842710ef3428f67a2965877 (diff)
downloadChessAI-088b948122cbf24dd9dc1dfedf4be2724bab2157.tar.gz
ChessAI-088b948122cbf24dd9dc1dfedf4be2724bab2157.zip
backing up files, with parser changes
Diffstat (limited to 'include/chess_board.hpp')
-rw-r--r--include/chess_board.hpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/chess_board.hpp b/include/chess_board.hpp
index fef1f69..d3516fc 100644
--- a/include/chess_board.hpp
+++ b/include/chess_board.hpp
@@ -27,13 +27,11 @@ typedef std::unique_ptr<ChessPiece> chessPiecePtr;
class ChessBoard {
public:
ChessBoard();
- ChessBoard(const ChessBoard& other) = default;
- virtual ~ChessBoard() = default;
void printBoard();
protected:
private:
- static const unsigned CHESS_BOARD_SIZE = 64;
+ static const unsigned BOARD_SIZE = 64;
boardVector board;
};