/* This example shows how to create a hierarchy between `struct` plugins and `fn` plugins */ use bevy::prelude::*; mod player; use player::PlayerPlugin; fn main() { App::new() .add_plugins(DefaultPlugins) .add_plugins(PlayerPlugin) .run(); }