use super::*; /// A good starting place for creating a game building on top of the base Bevy app pub struct BaseGamePlugin; impl Plugin for BaseGamePlugin { fn build(&self, app: &mut App) { app.add_plugins(DefaultPlugins) .add_plugins(DebuggingPlugin); } }