Add 'Bitboard' and 'Square' definitions

This commit is contained in:
Bruno BELANYI 2022-07-15 21:33:07 +02:00
parent 2c36ee266d
commit 755e891b17
4 changed files with 415 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::*;