use bevy::app::App; use bevy::DefaultPlugins; fn main() { let mut app = App::new(); app.add_plugins(DefaultPlugins); app.run(); }