mirui 0.1.1

A lightweight, no_std ECS-driven UI framework for embedded, desktop, and WebAssembly
Documentation
1
2
3
4
5
use super::world::World;

pub trait System {
    fn run(&self, world: &mut World);
}