(platform: &str)
| 100 | } |
| 101 | |
| 102 | pub fn new_with_platform(platform: &str) -> Self { |
| 103 | let window = Window::new_with_platform(platform); |
| 104 | let renderer = Box::new(renderer::DefaultRenderer::new(&window)); |
| 105 | Self { window, renderer } |
| 106 | } |
| 107 | |
| 108 | pub fn run<F>(self, app: F) |
| 109 | where |
nothing calls this directly
no outgoing calls
no test coverage detected