1//! Demonstrates how to set up automatic reflect types registration for platforms without `inventory` support 2use auto_register_static::main as lib_main; 3use bevy::reflect::load_type_registrations; 4 5fn main() { 6 // This must be called before our main to collect all type registration functions. 7 load_type_registrations!(); 8 // After running load_type_registrations! we just forward to our main. 9 lib_main(); 10} 11 12