You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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);
|
|
}
|
|
}
|
|
|