Commit working directory
This commit is contained in:
14
src/game.rs
Normal file
14
src/game.rs
Normal 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)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user