pub trait Renderer<WORLD: Send + Sync + 'static>: Send + Sync { type Error: Debug; // Required method fn render(&mut self, world: Arc<RwLock<WORLD>>) -> Result<(), Self::Error>; }
Rendering Engine Trait
Render the necessary contents of the world