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