defined shape of struct bitboard::bitmove::BitMove

This commit is contained in:
Varga Dávid Lajos
2025-11-18 17:09:39 +01:00
parent 887b9abed8
commit 57af3aaae3

View File

@@ -0,0 +1,8 @@
pub struct BitMove {
pub move_type: u8,
pub from_square: u8,
pub to_square: u8,
pub promotion_piece: Option<u8>
}