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