aboutsummaryrefslogtreecommitdiff
path: root/src/debug.rs
diff options
context:
space:
mode:
authorjacopograndi <jacopo.grandi@outlook.it>2022-08-01 19:54:02 +0200
committerjacopograndi <jacopo.grandi@outlook.it>2022-08-01 19:54:02 +0200
commit2b695d4f98ef6a74afd589cf18ddfa78bfc249b2 (patch)
tree6795da97e42211a3df30394c6056660377286311 /src/debug.rs
parent1b3759204ce99dbe53881d815172b7a4de1ef535 (diff)
bevy 0.8
Diffstat (limited to 'src/debug.rs')
-rw-r--r--src/debug.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/debug.rs b/src/debug.rs
deleted file mode 100644
index 4036ced..0000000
--- a/src/debug.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-use bevy::prelude::*;
-use bevy_inspector_egui::{RegisterInspectable, WorldInspectorPlugin};
-
-pub struct DebugPlugin;
-
-impl Plugin for DebugPlugin {
- fn build(&self, app: &mut App) {
- if cfg!(debug_assertions) {
- app.add_plugin(WorldInspectorPlugin::new());
- }
- }
-}