pub type AppSceneOnEventCallback = Option<unsafe extern "C" fn(context: *mut c_void, event: SceneManagerEvent) -> bool>;Expand description
Prototype for Scene on_event handler
Aliased Type§
enum AppSceneOnEventCallback {
None,
Some(unsafe extern "C" fn(_: *mut c_void, _: SceneManagerEvent) -> bool),
}