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