Add the Has world query to bevy_ecs::prelude (#9204)

# Objective
Addresses #9196 by adding query::Has to the bevy_ecs::prelude.
This commit is contained in:
FlippinBerger 2023-07-19 05:54:40 -06:00 committed by GitHub
parent 6f8089d35c
commit fd35e582dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,