game-wip-dontplay/src/main.rs
2023-04-17 22:03:33 +02:00

16 lines
209 B
Rust

mod app;
mod command;
mod debug;
mod game;
mod graphics;
mod math;
mod res;
mod texture_atlas;
mod tiles;
mod world;
use app::App;
fn main() {
let mut app = App::new().unwrap();
app.do_game_loop();
}