[board] Add a MoveGenerator struct

This commit is contained in:
Eryn Wells 2023-12-27 10:02:23 -07:00
parent 51a265172b
commit dda4cd8a5a
3 changed files with 20 additions and 0 deletions

View file

@ -1,7 +1,9 @@
mod bitboard;
mod moves;
pub mod piece;
mod position;
mod square;
pub use moves::Move;
pub use position::Position;
pub use square::Square;