bevy/examples/android/android.rs
2020-11-11 16:31:16 -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 = "debug", tag = "android"), backtrace = "full")
)]
pub fn android_main() {
main();
}