Move naive move generation into sub-module

This commit is contained in:
Bruno BELANYI 2022-07-24 16:24:35 +02:00
parent 9601a5657a
commit a4fd4f5cc4
9 changed files with 19 additions and 63 deletions

14
src/movegen/naive/mod.rs Normal file
View file

@ -0,0 +1,14 @@
pub mod bishop;
pub use bishop::*;
pub mod king;
pub use king::*;
pub mod knight;
pub use knight::*;
pub mod pawn;
pub use pawn::*;
pub mod rook;
pub use rook::*;