1//! An empty application (does nothing) 2 3use bevy::prelude::*; 4 5fn main() { 6 App::new().run(); 7} 8 9