e2r 0.10.0

experimental rendering engine in rust
Documentation
1
2
3
4
5
6
7
8
9
pub trait IRenderer {

    type EventRender;

    fn init() -> Result< Self, & 'static str > where Self: Sized;

    fn process_render_events( & mut self, Vec< Self::EventRender > ) -> Result< (), & 'static str >;
}