pub trait AppCreator<A: Allocator + 'static> {
type App: App;
// Required method
fn create(&self, cc: CreationContext<'_>) -> (Self::App, AshRenderState<A>);
}
Expand description
egui-ash app creator trait.
Required Associated Types§
Required Methods§
Sourcefn create(&self, cc: CreationContext<'_>) -> (Self::App, AshRenderState<A>)
fn create(&self, cc: CreationContext<'_>) -> (Self::App, AshRenderState<A>)
create egui-ash app.