From 40e242dc5450e1661c817b0bad8f9748388c278a Mon Sep 17 00:00:00 2001 From: Adam Date: Tue, 28 Jul 2026 19:03:20 +0200 Subject: removing repl and unsuded featuares --- src/board.hpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/board.hpp') diff --git a/src/board.hpp b/src/board.hpp index 2c3bba9..993a66d 100644 --- a/src/board.hpp +++ b/src/board.hpp @@ -4,6 +4,7 @@ #include #include #include + enum PieceType { NONE, PAWN, @@ -21,7 +22,6 @@ enum GameState { STALEMATE, DRAW, }; -std::string toChar(PieceType type, bool white); struct Piece { bool color = 0; @@ -77,10 +77,8 @@ struct UndoMove { uint64_t zobristKey; GameState oldState; }; -void printBoard(Game *b); Piece createPiece(PieceType type, bool color, bool moved = false); -// void PlayMove(Move move, Game *b); int PositionToIndex(Position i); UndoMove MakeMove(Move move, Game *g); void UnMakeMove(UndoMove undo, Game *g); -- cgit v1.2.3