Game Engine Core
Support an Open Source Developer! :hearts:

Read the documentation.
Features
- Create and store a stack-based state machine.
- Manually update individual game frames.
- Automatically run a game loop.
- Game engine agnostic.
- Does not rely on ECS.
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
- Maintainer: Jojolepro
- Contact: jojolepro [at] jojolepro [dot] com
- Website: jojolepro.com
- Patreon: patreon