| 82 | pub use renderer::Renderer; |
| 83 | |
| 84 | pub trait Application { |
| 85 | fn init(&mut self); |
| 86 | fn update(&mut self); |
| 87 | fn render(&self, renderer: &mut dyn Renderer); |
| 88 | } |
| 89 | |
| 90 | pub struct RustUI { |
| 91 | window: Window, |
nothing calls this directly
no outgoing calls
no test coverage detected