Add 'Magic' type

This commit is contained in:
Bruno BELANYI 2022-07-22 10:14:46 +02:00
parent 847e18dac1
commit 6b0563b1bd
3 changed files with 29 additions and 0 deletions

View file

@ -1,3 +1,7 @@
// Magic bitboard
pub mod magic;
pub use magic::*;
// Move generation implementation details
mod bishop;
mod king;