added file and module structure for bitboard::makemove

This commit is contained in:
Varga Dávid Lajos
2025-11-27 23:08:39 +02:00
parent 2375f28ee3
commit e7c7743682
2 changed files with 8 additions and 1 deletions

View File

@@ -7,4 +7,5 @@ mod movegen;
pub mod board;
pub(in super) mod bitmove;
pub(in super) mod movebuffer;
pub(in super) mod movebuffer;
pub(in super) mod makemove;

View File

@@ -0,0 +1,6 @@
use super::board::Board;
impl Board {
}