Qinetic is free, cross-platform, open-source game engine, designed to be fast, simple and modular.
Recommended to checking out Qinetic Rust API Docs for a full tutorial.
To create a simple application with standard functionality enabled, use:
```rust use qinetic::prelude::*;
fn main() { Application::new() .add_system(DefaultSystem) .run(); }
```