1 2 3 4 5 6 7 8
use bevy::app::App; use bevy::DefaultPlugins; fn main() { let mut app = App::new(); app.add_plugins(DefaultPlugins); app.run(); }