bevy/examples/android/android.rs
2020-11-03 12:00:47 -08:00

10 lines
243 B
Rust

// Edit to run any single file example from Bevy.
include!("../3d/3d_scene.rs");
#[cfg_attr(
target_os = "android",
ndk_glue::main(logger(level = "trace", tag = "android"), backtrace = "full")
)]
pub fn android_main() {
main();
}