Skip to main content

basic/
basic.rs

1use zray::engine::Engine;
2
3fn main() {
4    let mut game = Engine::new();
5    game.run();
6}