yaecs 0.11.0

Yet Another Entity Component System.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use ::{Entities, Globals};
use std::fmt::{Debug, Formatter, Result};

pub trait System {
    fn process(&mut self, entities: &mut Entities, globals: &mut Globals);
}

impl Debug for System {
    fn fmt(&self, f: &mut Formatter) -> Result {
        write!(f, "System")
    }
}