mirror of
https://github.com/emilk/egui.git
synced 2026-07-10 08:44:11 +00:00
6b38fd39a1
* [x] I have followed the instructions in the PR template
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)))),
|
|
)
|
|
}
|