gizmo-app 0.1.7

A custom ECS and physics engine aimed for realistic simulations.
Documentation
1
2
3
4
5
use crate::App;

pub trait Plugin<State: 'static = ()> {
    fn build(&self, app: &mut App<State>);
}