diff options
| author | Adam <adammegarules1@gmail.com> | 2026-07-31 10:03:55 +0200 |
|---|---|---|
| committer | Adam <adammegarules1@gmail.com> | 2026-07-31 10:03:55 +0200 |
| commit | 32e11f19de1c602781f9a41fd6a3e31257860984 (patch) | |
| tree | 1935d3d1d44f17cb0734483dbebbc8158695d88b /src/bitboards.hpp | |
| parent | 9475a738f81396baecfb139b2ceda360320224c8 (diff) | |
removing bitboard files
Diffstat (limited to 'src/bitboards.hpp')
| -rw-r--r-- | src/bitboards.hpp | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/src/bitboards.hpp b/src/bitboards.hpp deleted file mode 100644 index 7288f8a..0000000 --- a/src/bitboards.hpp +++ /dev/null @@ -1,40 +0,0 @@ -#ifndef SRC_BITBOARDS_H_ -#define SRC_BITBOARDS_H_ - -#include "board/board.hpp" -#include <cstdint> -#include <unordered_map> - -struct BitBoards { - uint64_t whitePawns; - uint64_t whiteKnights; - uint64_t whiteBishops; - uint64_t whiteRooks; - uint64_t whiteQueens; - uint64_t whiteKing; - - uint64_t blackPawns; - uint64_t blackKnights; - uint64_t blackBishops; - uint64_t blackRooks; - uint64_t blackQueens; - uint64_t blackKing; -}; -struct UndoMoveBitboards { - BitBoards board; - - bool oldTurn; - bool oldCanEnpassant; - Position oldEnPassant; - - bool OldWhiteCastleKing; - bool OldWhiteCastleQueen; - bool OldBlackCastleKing; - bool OldBlackCastleQueen; - - int oldHalfMoveClock; - int oldMoveClock; - uint64_t ZobristKey; - GameState oldState; -}; -#endif /* SRC_BITBOARDS_H_ */ |
