mirror of
https://github.com/emilk/egui.git
synced 2026-06-26 14:49:06 -04:00
10 lines
195 B
Rust
10 lines
195 B
Rust
use hello_android::MyApp;
|
|
|
|
fn main() -> eframe::Result {
|
|
eframe::run_native(
|
|
"hello_android",
|
|
Default::default(),
|
|
Box::new(|cc| Ok(Box::new(MyApp::new(cc)))),
|
|
)
|
|
}
|