Add 'Rank' enum

This commit is contained in:
Bruno BELANYI 2022-07-16 14:05:49 +02:00
parent fdfc1fcf63
commit 4eff49f367
2 changed files with 88 additions and 0 deletions

View file

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