initial release

This commit is contained in:
JOLIMAITRE Matthieu 2022-04-04 14:23:20 +03:00
commit 0d492adb0a
8 changed files with 627 additions and 0 deletions

11
src/main.rs Normal file
View file

@ -0,0 +1,11 @@
use lib::game::{Game, Rules};
pub mod lib;
fn main() {
let rules = Rules::default().size(4).spawn_per_turn(1);
let mut game = Game::new(rules);
loop {
game.turn().unwrap();
}
}