aboutsummaryrefslogtreecommitdiff
path: root/src/zobrist/zobrist.hpp
blob: 8de9d420991de4b8d03802989fd4088f8f5d9cc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once
#include "board.hpp"
#include <cstdint>

extern uint64_t PieceKeys[2][7][64];
extern uint64_t SideKey;
extern uint64_t CastleKeys[16];
extern uint64_t EnPassantKeys[8];

void InitZobrist();
uint64_t GenerateZobristKey(Game *b);