stickfosh/cpp/src/move.hpp

7 lines
88 B
C++
Raw Normal View History

2025-02-02 16:49:24 +01:00
#include <cstdint>
struct Move {
int8_t start_square;
int8_t target_square;
};