From 585e392b6a3a25b3b851a85935fae4d282a4e40c Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Sun, 2 Feb 2025 16:49:24 +0100 Subject: [PATCH] created move struct --- cpp/src/move.hpp | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 cpp/src/move.hpp diff --git a/cpp/src/move.hpp b/cpp/src/move.hpp new file mode 100644 index 0000000..b5acc18 --- /dev/null +++ b/cpp/src/move.hpp @@ -0,0 +1,6 @@ +#include + +struct Move { + int8_t start_square; + int8_t target_square; +};