Add 'Rank' enum

This commit is contained in:
Bruno BELANYI 2022-07-16 14:05:49 +02:00
parent 1c78574882
commit 5a35c55091
2 changed files with 92 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::*;