game-wip-dontplay/src/main.rs
2023-04-01 20:12:09 +02:00

12 lines
138 B
Rust

mod app;
mod game;
mod graphics;
mod math;
mod world;
use app::App;
fn main() {
let mut app = App::new();
app.do_game_loop();
}