[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

@ -0,0 +1,3 @@
mod coordinates;
pub use coordinates::{Direction, File, Rank, Square};