[][src]Trait e2rcore::interface::i_renderer::IRenderer

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>; }

Associated Types

Loading content...

Required methods

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

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

Loading content...

Implementors

impl IRenderer for Renderer[src]

type EventRender = Event

Loading content...