Refactoring es 03

- game now should work
- missing tests docs interaction
This commit is contained in:
2024-05-11 09:46:24 +02:00
parent 109c19a085
commit 9baf5d494d
8 changed files with 450 additions and 215 deletions

View File

@@ -1,4 +1,3 @@
#![allow(unused)]
/** Es.3
* Implementare una libreria che permetta di realizzare il seguente gioco.
@@ -40,3 +39,11 @@ pub mod generator;
pub mod cell;
pub mod config;
pub mod entities;
pub fn start_game() {
let mut game = game::Rogue::new();
loop {
println!("{}", game);
game.compute_turn();
}
}