Add 'board::Direction' enum

This commit is contained in:
Bruno BELANYI 2022-07-17 23:06:43 +02:00
parent 8e2b7c1714
commit c95d7f078a
2 changed files with 25 additions and 0 deletions

View file

@ -1,6 +1,9 @@
pub mod bitboard;
pub use bitboard::*;
pub mod directions;
pub use directions::*;
pub mod file;
pub use file::*;