Make all modules at least 'pub(crate)'
This commit is contained in:
parent
bd9238d686
commit
23d01d4d3f
|
@ -3,11 +3,11 @@ pub mod magic;
|
|||
pub use magic::*;
|
||||
|
||||
// Move generation implementation details
|
||||
mod bishop;
|
||||
mod king;
|
||||
mod knight;
|
||||
mod pawn;
|
||||
mod rook;
|
||||
pub(crate) mod bishop;
|
||||
pub(crate) mod king;
|
||||
pub(crate) mod knight;
|
||||
pub(crate) mod pawn;
|
||||
pub(crate) mod rook;
|
||||
|
||||
// Magic bitboard generation
|
||||
mod wizardry;
|
||||
pub(crate) mod wizardry;
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
mod generation;
|
||||
pub(crate) mod generation;
|
||||
mod mask;
|
||||
|
|
Loading…
Reference in a new issue