[core] Move the contents of board::square to core::coordinates

Export Square, Rank, and File from the core crate.
This commit is contained in:
Eryn Wells 2024-01-24 08:25:56 -08:00
parent 7e08a9adc4
commit 406631b617
3 changed files with 212 additions and 153 deletions

View file

@ -12,7 +12,6 @@ mod move_generator;
pub mod piece;
mod position;
mod sight;
mod square;
pub use piece::{Color, Piece};
pub use position::{MoveBuilder as MakeMoveBuilder, Position, PositionBuilder};