[moves] Knight move generator and tests

This commit is contained in:
Eryn Wells 2025-05-25 11:05:10 -07:00
parent 3f3842c7c8
commit faca844733
3 changed files with 170 additions and 0 deletions

View file

@ -1,10 +1,12 @@
// Eryn Wells <eryn@erynwells.me>
mod knight;
mod pawn;
#[cfg(test)]
mod testing;
pub use knight::KnightMoveGenerator;
pub use pawn::PawnMoveGenerator;
use crate::Move;