Add 'Bitboard' and 'Square' definitions

This commit is contained in:
Bruno BELANYI 2022-07-15 21:33:07 +02:00
parent 0d94438b46
commit 98efd390a6
4 changed files with 421 additions and 0 deletions

5
src/board/mod.rs Normal file
View file

@ -0,0 +1,5 @@
pub mod bitboard;
pub use bitboard::*;
pub mod square;
pub use square::*;