start with some structure of the game

This commit is contained in:
2021-01-01 23:07:16 +01:00
parent 09233e1e99
commit 341fa3f2f2
3 changed files with 130 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
mod azul;
use azul::Game;
fn main() {
println!("Hello, world!");
let game = Game::new(2);
println!("{:#?}", game);
}