Documenting 03

- added docs for all things
- added methods for accessing entity stats
- refactored some names
This commit is contained in:
2024-05-11 14:16:29 +02:00
parent 9baf5d494d
commit a75aaa13c7
7 changed files with 330 additions and 91 deletions

View File

@@ -39,11 +39,3 @@ 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();
}
}