Commit working directory

This commit is contained in:
2024-04-06 16:11:09 +03:00
commit 69946f09be
6 changed files with 138 additions and 0 deletions

9
src/main.rs Normal file
View File

@@ -0,0 +1,9 @@
pub mod board;
pub mod game;
use game::Game;
fn main() {
let game = Game::new();
game.run();
}