defined shape of struct MoveBuffer

This commit is contained in:
Varga Dávid Lajos
2025-11-19 15:06:37 +01:00
parent b76a009e4e
commit a60658763d

View File

@@ -0,0 +1,7 @@
use super::bitmove::BitMove;
pub struct MoveBuffer {
buffer: [BitMove; 256],
count: usize
}