Game Engine Core

Game Engine Core

Support an Open Source Developer! :hearts:
Become a patron

Read the documentation.

Features

Usage

Add the following to you Cargo.toml file: game_engine_core = "*"

Use it like so: ```rust use gameenginecore::*;

struct MyState; impl State for MyState { fn update(&mut self, statedata: &mut i32) -> StateTransition { *statedata += 1; StateTransition::Quit } }

fn main() { Engine::new(MyState, 0, |, _| {}, 1000.0) .engineloop(); } ```

Maintainer Information