From e4c1a8dc2454a0cd5ff3bb36caa9aa23af2326bd Mon Sep 17 00:00:00 2001 From: "kaosat.dev" Date: Mon, 4 Mar 2024 17:36:17 +0100 Subject: [PATCH] chore(): cargo fmt --- examples/common/src/core/mod.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/examples/common/src/core/mod.rs b/examples/common/src/core/mod.rs index 759000a..2711ecd 100644 --- a/examples/common/src/core/mod.rs +++ b/examples/common/src/core/mod.rs @@ -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); - - } }