Files
rttt/main.rs

13 lines
203 B
Rust
Raw Permalink Normal View History

2025-04-06 18:37:49 +03:00
mod engine;
2025-01-11 02:55:05 +03:00
mod game;
2025-04-06 18:37:49 +03:00
mod player;
2025-01-11 02:55:05 +03:00
fn main() {
2025-04-06 18:37:49 +03:00
let mut engine = engine::Engine::new();
match engine.run() {
Ok(_) => println!("game over"),
Err(e) => println!("{}", e),
};
2025-01-11 02:55:05 +03:00
}