diff options
| author | mat <27899617+mat-1@users.noreply.github.com> | 2022-11-18 22:11:30 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-18 22:11:30 -0600 |
| commit | befa22c1f3ff0c1f0cb745b3f4e736910c053a8b (patch) | |
| tree | 17037d0d62d1259366d9385c47236774886b4002 /azalea-physics | |
| parent | 6c6eb5572b869e3199adc560b101fa663c01b5d2 (diff) | |
| download | azalea-drasl-befa22c1f3ff0c1f0cb745b3f4e736910c053a8b.tar.xz | |
Player List (#41)
* keep track of player list
* send player update events
Diffstat (limited to 'azalea-physics')
| -rwxr-xr-x | azalea-physics/src/collision/mod.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/azalea-physics/src/collision/mod.rs b/azalea-physics/src/collision/mod.rs index aa585aa8..7fb2cf97 100755 --- a/azalea-physics/src/collision/mod.rs +++ b/azalea-physics/src/collision/mod.rs @@ -4,14 +4,13 @@ mod mergers; mod shape; mod world_collisions; -use std::ops::DerefMut; - use azalea_core::{Axis, Vec3, AABB, EPSILON}; use azalea_world::entity::{Entity, EntityData}; use azalea_world::{MoveEntityError, World}; pub use blocks::BlockWithShape; pub use discrete_voxel_shape::*; pub use shape::*; +use std::ops::DerefMut; use world_collisions::CollisionGetter; pub enum MoverType { |
