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

@ -4,9 +4,10 @@
//! generating the possible moves for the king in the given position.
use super::{move_generator_declaration, MoveGeneratorInternal, MoveSet};
use crate::{r#move::Castle, Position};
use crate::Position;
use chessfriend_bitboard::BitBoard;
use chessfriend_core::{PlacedPiece, Shape};
use chessfriend_moves::Castle;
move_generator_declaration!(KingMoveGenerator, struct);
move_generator_declaration!(KingMoveGenerator, new);