pub fn start<A, R>(
event_loop: EventLoop<()>,
window: Window,
app: A,
render: R,
target_frame_time: Duration,
max_frame_time: Duration
) -> Result<()>where
A: App<RenderContext = R> + 'static,
Expand description
Start the application.