pebble-engine 0.1.3

A modular, ECS-style graphics/app framework for Rust.
Documentation
1
2
3
4
5
use crate::app::App;

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