[position, board] Move castle, movement, and sight modules to the board crate

Nothing about this code depends on Position, so push it down to a lower layer.
This commit is contained in:
Eryn Wells 2025-05-21 10:08:59 -07:00
parent 9a4fa827f9
commit dbca7b4f88
7 changed files with 334 additions and 80 deletions

View file

@ -1,8 +1,6 @@
// Eryn Wells <eryn@erynwells.me>
mod movement;
mod position;
mod sight;
#[macro_use]
mod macros;