1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-27 15:13:12 -04:00

Handle for app from WehHandle

This commit is contained in:
Stanislav
2022-08-03 19:27:19 +03:00
parent a827c3e033
commit fd9c8e5e08
8 changed files with 93 additions and 1 deletions

View File

@@ -47,6 +47,11 @@ impl eframe::App for MyApp {
});
});
}
#[cfg(target_arch = "wasm32")]
fn as_any_mut(&mut self) -> &mut dyn Any {
&mut *self
}
}
impl MyApp {