This commit is contained in:
2021-01-03 00:15:45 +01:00
parent 21ef5f7c5b
commit 30598ddd5a
4 changed files with 164 additions and 25 deletions
+3 -2
View File
@@ -1,10 +1,11 @@
mod azul;
use azul::Game;
use azul::*;
fn main() -> Result<(), &'static str>{
let mut game = Game::new(2)?;
println!("{:#?}", game);
game.fill()?;
let game2 = game.do_move(GameMove(0, Tile::Red, 0))?;
println!("{:#?}", game2);
Ok(())
}