[core,board] Update all use imports referring to Square, Rank, and File

This commit is contained in:
Eryn Wells 2024-01-24 08:32:09 -08:00
parent 3c3a62345d
commit 106800bcb3
16 changed files with 40 additions and 40 deletions

View file

@ -4,9 +4,9 @@ use crate::{
piece::{PlacedPiece, Shape},
position::flags::Flags,
r#move::Castle,
square::Direction,
BitBoard, Color, MakeMoveError, Move, Piece, Position, Square,
BitBoard, Color, MakeMoveError, Move, Piece, Position,
};
use chess_core::{Direction, Square};
/// A position builder that builds a new position by making a move.
#[derive(Clone)]