Review comments

Signed-off-by: John Nunley <dev@notgull.net>
This commit is contained in:
John Nunley
2023-10-08 09:38:51 -07:00
parent 999a1f8733
commit 49a315870e
8 changed files with 42 additions and 15 deletions

View File

@@ -0,0 +1,14 @@
use winit::platform::android::{
activity::AndroidApp,
EventLoopBuilderExtAndroid
};
#[no_mangle]
fn android_main(app: AndroidApp) {
winit::event_loop::EventLoopBuilder::new()
.with_android_app(app)
.build()
.unwrap()
.run(|_, _| todo!())
.ok();
}