Move naive move generation into sub-module
This commit is contained in:
parent
9601a5657a
commit
a4fd4f5cc4
9 changed files with 19 additions and 63 deletions
14
src/movegen/naive/mod.rs
Normal file
14
src/movegen/naive/mod.rs
Normal 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::*;
|
||||
Loading…
Add table
Add a link
Reference in a new issue