aboutsummaryrefslogtreecommitdiff
path: root/src/zobrist/zobrist.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/zobrist/zobrist.hpp')
-rw-r--r--src/zobrist/zobrist.hpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/zobrist/zobrist.hpp b/src/zobrist/zobrist.hpp
deleted file mode 100644
index 9433421..0000000
--- a/src/zobrist/zobrist.hpp
+++ /dev/null
@@ -1,11 +0,0 @@
-#pragma once
-#include "../board/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);