Skip to content

Commit

Permalink
Add the Has world query to bevy_ecs::prelude (#9204)
Browse files Browse the repository at this point in the history
# Objective
Addresses #9196 by adding query::Has to the bevy_ecs::prelude.
  • Loading branch information
FlippinBerger authored Jul 19, 2023
1 parent 6f8089d commit fd35e58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_ecs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pub mod prelude {
component::Component,
entity::Entity,
event::{Event, EventReader, EventWriter, Events},
query::{Added, AnyOf, Changed, Or, QueryState, With, Without},
query::{Added, AnyOf, Changed, Has, Or, QueryState, With, Without},
removal_detection::RemovedComponents,
schedule::{
apply_deferred, apply_state_transition, common_conditions::*, Condition,
Expand Down

0 comments on commit fd35e58

Please sign in to comment.