Replace uses of types in r#move with types from the moves package types

This commit is contained in:
Eryn Wells 2024-02-25 09:52:40 -08:00
parent aaad991899
commit d668091d0d
16 changed files with 273 additions and 280 deletions

View file

@ -4,7 +4,6 @@ pub mod fen;
mod check;
mod display;
mod r#move;
mod move_generator;
mod position;
mod sight;
@ -12,8 +11,8 @@ mod sight;
#[macro_use]
mod macros;
#[cfg(test)]
#[macro_use]
mod testing;
pub use position::{MoveBuilder as MakeMoveBuilder, Position, PositionBuilder};
pub use r#move::{Castle, MakeMoveError, Move, MoveBuilder};
pub use position::{MakeMoveError, MoveBuilder as MakeMoveBuilder, Position, PositionBuilder};