Skip to content

Commit 2e5d4e2

Browse files
committed
Update lib.rs
1 parent 014013c commit 2e5d4e2

File tree

1 file changed

+0
-8
lines changed
  • crates/bevy_hierarchy/src

1 file changed

+0
-8
lines changed

crates/bevy_hierarchy/src/lib.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,11 @@ pub mod prelude {
2323
}
2424

2525
use bevy_app::prelude::*;
26-
use bevy_ecs::schedule::SystemLabel;
2726

2827
/// The base plugin for handling [`Parent`] and [`Children`] components
2928
#[derive(Default)]
3029
pub struct HierarchyPlugin;
3130

32-
/// Label enum for the systems relating to hierarchy upkeep
33-
#[derive(Debug, Hash, PartialEq, Eq, Clone, SystemLabel)]
34-
pub enum HierarchySystem {
35-
/// Updates [`Parent`] when changes in the hierarchy occur
36-
ParentUpdate,
37-
}
38-
3931
impl Plugin for HierarchyPlugin {
4032
fn build(&self, app: &mut App) {
4133
app.register_type::<Children>()

0 commit comments

Comments
 (0)