Trait Renderable

Source
pub trait Renderable<T> {
    // Required method
    fn render(&self, graphics: &mut Graphics<'_>);
}
Expand description

Represents anything that Graphics can render

Required Methods§

Source

fn render(&self, graphics: &mut Graphics<'_>)

Implementors§