aboutsummaryrefslogtreecommitdiff
path: root/azalea-physics/src/collision/entity_collisions.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-physics/src/collision/entity_collisions.rs')
-rw-r--r--azalea-physics/src/collision/entity_collisions.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/azalea-physics/src/collision/entity_collisions.rs b/azalea-physics/src/collision/entity_collisions.rs
index de70b2b9..5933f2d3 100644
--- a/azalea-physics/src/collision/entity_collisions.rs
+++ b/azalea-physics/src/collision/entity_collisions.rs
@@ -3,7 +3,7 @@ use azalea_entity::{
Physics,
metadata::{AbstractBoat, Shulker},
};
-use azalea_world::Instance;
+use azalea_world::World;
use bevy_ecs::{
component::Component,
entity::Entity,
@@ -51,7 +51,7 @@ pub fn update_last_bounding_box(
}
pub fn get_entity_collisions(
- world: &Instance,
+ world: &World,
aabb: &Aabb,
source_entity: Option<Entity>,
aabb_query: &AabbQuery,
@@ -83,7 +83,7 @@ pub fn get_entity_collisions(
/// `source_entity` is the entity that the bounding box belongs to, and won't be
/// one of the returned entities.
pub fn get_entities(
- world: &Instance,
+ world: &World,
source_entity: Option<Entity>,
aabb: &Aabb,
predicate: &dyn Fn(Entity) -> bool,