From 6686d5f37966a2d309b6c8308f91279d9b1372a2 Mon Sep 17 00:00:00 2001 From: MiniaczQ Date: Mon, 3 Jun 2024 17:17:31 +0200 Subject: [PATCH] remove state bound system from prelude --- crates/bevy_state/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_state/src/lib.rs b/crates/bevy_state/src/lib.rs index 2fc55ae3d35cb..497196970f898 100644 --- a/crates/bevy_state/src/lib.rs +++ b/crates/bevy_state/src/lib.rs @@ -52,5 +52,5 @@ pub mod prelude { }; #[cfg(feature = "bevy_hierarchy")] #[doc(hidden)] - pub use crate::state_bound::*; + pub use crate::state_bound::StateBound; }