pub fn run<C: AppCreator<A> + 'static, A: Allocator + 'static>(
app_id: impl Into<String>,
creator: C,
run_option: RunOption,
) -> ExitCodeExpand description
egui-ash run function.
fn main() {
egui_winit_ash::run("my_app", MyAppCreator, RunOption::default());
}