mirror of
https://github.com/Noratrieb/game-wip-dontplay.git
synced 2026-01-14 19:55:02 +01:00
16 lines
209 B
Rust
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();
|
|
}
|