pub trait Drawable {
// Required method
fn draw(
&self,
context: &mut DrawContext,
graphics: &mut dyn GraphicsTarget<Vertex>,
);
}pub trait Drawable {
// Required method
fn draw(
&self,
context: &mut DrawContext,
graphics: &mut dyn GraphicsTarget<Vertex>,
);
}