(&mut self)
| 154 | } |
| 155 | |
| 156 | fn update(&mut self) { |
| 157 | // For now, just handle window close events |
| 158 | // You'll need to implement proper event handling based on your Event system |
| 159 | } |
| 160 | |
| 161 | fn render(&self, renderer: &mut dyn Renderer) { |
| 162 | renderer.clear(Color::rgb(0.1, 0.1, 0.1)); |
nothing calls this directly
no outgoing calls
no test coverage detected