Initialize

This commit is contained in:
2026-05-27 10:43:56 +04:00
commit 3e4534fe0b
71 changed files with 5817 additions and 0 deletions

9
src/main.rs Normal file
View File

@@ -0,0 +1,9 @@
use rusty_engine::prelude::*;
fn main() {
let mut game = Game::new();
// setup game here
game.run(());
}