use bevy::prelude::*; mod hello_plugin; use hello_plugin::HelloPlugin; fn main() { App::new() .add_plugins((DefaultPlugins, HelloPlugin)) .run(); }