Added tutorial 01.
Added tutorial 02.
Added tutorial 03.
This library comprises Rust bindings for the Nova r8 game engine.
Create a new project named my-game
.
$ cargo new my-game
$ cd my-game
$ cargo add nova-r8
Add the following content to the src/main.rs
file to instantiate a blank window.
use nova_r8::*;
fn main() {
let g = Game::new();
while g.run() {
}
}
$ cargo build
$ ./target/debug/my-game
Refer to the Nova r8 project for comprehensive references.
nova_r8::Game
nova_r8::Actor
nova_r8::Vec2
We enthusiastically encourage and welcome contributions.