#ifndef SRC_HASH_H_ #define SRC_HASH_H_ #include "board/board.hpp" #include void InitHashing(); uint64_t GenerateHashFromScratch(Game *b); void xorCastleKey(bool color, bool IS_KING_SIDE, Game *g); void toogleSideKey(Game *g); void xorEnpassantKey(Game *g); void xorSquare(uint8_t square, Game *g); #endif /* SRC_HASH_H_ */