Refactor project structure to use submodules

This commit is contained in:
stefiosif
2024-08-14 21:58:20 +03:00
parent 69cabd5b58
commit ed711f905d
21 changed files with 121 additions and 89 deletions

6
src/board/mod.rs Normal file
View File

@@ -0,0 +1,6 @@
pub mod bitboard;
pub mod board;
pub mod fen;
pub mod game;
pub mod square;
pub mod state;