split off repr

This commit is contained in:
2025-02-20 16:05:14 -05:00
parent 73faf4c1fb
commit 1fe7658deb
14 changed files with 27 additions and 23 deletions

7
src/repr/mod.rs Normal file
View File

@@ -0,0 +1,7 @@
mod bitboard;
mod board;
mod misc;
mod piece;
pub use board::{Board, Winner};
pub use piece::Piece;