Qinetic

Crates.io License (MIT) docs.rs Dependency status Lines of code

About

Qinetic is free, cross-platform, open-source game engine, designed to be fast, simple and modular.

Docs

Getting started

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(); }

```