Super basic map rendering

This commit is contained in:
crumblingstatue 2023-04-02 00:30:03 +02:00
parent 5e539d668f
commit 49c47ac718
6 changed files with 60 additions and 22 deletions

View file

@ -8,6 +8,7 @@ mod world;
use app::App;
fn try_main() -> anyhow::Result<()> {
gamedebug_core::set_enabled(true);
let mut app = App::new()?;
app.do_game_loop();
Ok(())