Move naive move generation into sub-module

This commit is contained in:
Bruno BELANYI 2022-07-24 16:24:35 +02:00
parent 5a6dbaaa10
commit fd8e87a4fc
10 changed files with 14 additions and 13 deletions

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

@ -0,0 +1,5 @@
pub mod bishop;
pub mod king;
pub mod knight;
pub mod pawn;
pub mod rook;