Initial commit

Basic skeleton
This commit is contained in:
crumblingstatue 2023-04-01 14:51:52 +02:00
commit d5c9e24201
6 changed files with 514 additions and 0 deletions

9
src/main.rs Normal file
View file

@ -0,0 +1,9 @@
mod app;
mod graphics;
use app::App;
fn main() {
let mut app = App::new();
app.do_game_loop();
}