aboutsummaryrefslogtreecommitdiff
path: root/src/zobrist.hpp
diff options
context:
space:
mode:
authorAdam <adammegarules1@gmail.com>2026-07-29 20:11:40 +0200
committerAdam <adammegarules1@gmail.com>2026-07-29 20:11:40 +0200
commitd528a20684570fb70f0e6b13a78bc6504a1edd89 (patch)
treeb227cab63e05ce3f2063b2298fd8c553f1a90fe4 /src/zobrist.hpp
parent43a8816a7c56096d974689e42f7f6f110d28d408 (diff)
adding testing new folder structer
Diffstat (limited to 'src/zobrist.hpp')
-rw-r--r--src/zobrist.hpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/zobrist.hpp b/src/zobrist.hpp
deleted file mode 100644
index 8de9d42..0000000
--- a/src/zobrist.hpp
+++ /dev/null
@@ -1,11 +0,0 @@
-#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);