Replace crate::r#move::castle::Castle with moves::Castle

This commit is contained in:
Eryn Wells 2024-02-25 09:44:25 -08:00
parent 36db46ac18
commit aaad991899
5 changed files with 8 additions and 8 deletions

View file

@ -1,8 +1,8 @@
// Eryn Wells <eryn@erynwells.me>
use crate::{r#move::Castle, Move, MoveBuilder};
use chessfriend_bitboard::BitBoard;
use chessfriend_core::{Color, Piece, PlacedPiece, Shape, Square};
use chessfriend_moves::{Builder as MoveBuilder, Castle, Move};
/// A set of bitboards defining the moves for a single piece on the board.
#[derive(Clone, Debug, Default, Eq, PartialEq)]