1use crate::renderpass::CmdBuffer; 2 3pub trait Drawable { 4 fn draw(&mut self, command_buffer: &mut CmdBuffer); 5}