aboutsummaryrefslogtreecommitdiffstats
path: root/include/chess_board.hpp
diff options
context:
space:
mode:
authorzedarider <ymherklotz@gmail.com>2017-01-17 15:48:32 +0000
committerzedarider <ymherklotz@gmail.com>2017-01-17 15:48:32 +0000
commit9a457557caed9ef614456a9c8139c89084381ed3 (patch)
treead3a9ccedc064a70b7981197a8a91795bbaeacb6 /include/chess_board.hpp
parentf0799aef3ff8c4a8e8ffea79c963b8f128c462b9 (diff)
downloadChessAI-9a457557caed9ef614456a9c8139c89084381ed3.tar.gz
ChessAI-9a457557caed9ef614456a9c8139c89084381ed3.zip
made it more readable
Diffstat (limited to 'include/chess_board.hpp')
-rw-r--r--include/chess_board.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/chess_board.hpp b/include/chess_board.hpp
index c277618..ac96323 100644
--- a/include/chess_board.hpp
+++ b/include/chess_board.hpp
@@ -28,11 +28,11 @@ class ChessBoard {
public:
ChessBoard();
- void populateBoard();
- void printBoard();
+ bool populateBoard();
+ bool printBoard();
protected:
private:
- static const unsigned BOARD_SIZE = 64;
+ static const std::size_t BOARD_SIZE = 64;
boardVector board;
};