7 lines
88 B
C++
7 lines
88 B
C++
|
#include <cstdint>
|
||
|
|
||
|
struct Move {
|
||
|
int8_t start_square;
|
||
|
int8_t target_square;
|
||
|
};
|