chore(): cargo fmt

This commit is contained in:
kaosat.dev 2024-03-04 17:36:17 +01:00
parent 5c43d2ead7
commit e4c1a8dc24
1 changed files with 1 additions and 3 deletions

View File

@ -22,13 +22,11 @@ pub struct CorePlugin;
impl Plugin for CorePlugin {
fn build(&self, app: &mut App) {
app.add_plugins(CameraPlugin);
#[cfg(feature = "physics_rapier")]
app.add_plugins(PhysicsPlugin);
#[cfg(feature = "physics_xpbd")]
app.add_plugins(PhysicsPluginXPBD);
}
}