stickfosh/cpp/src/move.hpp

12 lines
191 B
C++
Raw Normal View History

2025-02-02 17:13:55 +01:00
#include "castle_side.hpp"
2025-02-02 16:49:24 +01:00
#include <cstdint>
struct Move {
2025-02-02 17:13:55 +01:00
int8_t piece;
2025-02-02 16:49:24 +01:00
int8_t target_square;
2025-02-02 17:13:55 +01:00
bool is_capturing = false;
CastleSide castle_side = CastleSide::Neither;
2025-02-02 16:49:24 +01:00
};