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

14
src/game.rs Normal file
View File

@@ -0,0 +1,14 @@
use crate::board::Board;
pub struct Game {}
impl Game {
pub fn new() -> Game {
Game {}
}
pub fn run(&self) {
let board = Board::new();
println!("{}", board)
}
}