Parse FEN string into game state

This commit is contained in:
2024-05-10 17:42:11 +03:00
parent 69946f09be
commit c00c6a7b15
4 changed files with 298 additions and 17 deletions

View File

@@ -1,5 +1,7 @@
pub mod board;
pub mod fen;
pub mod game;
pub mod r#move;
use game::Game;