run

Function run 

Source
pub fn run<C: AppCreator<A> + 'static, A: Allocator + 'static>(
    app_id: impl Into<String>,
    creator: C,
    run_option: RunOption,
) -> ExitCode
Expand description

egui-ash run function.

fn main() {
    egui_winit_ash::run("my_app", MyAppCreator, RunOption::default());
}