diff options
| author | mat <git@matdoes.dev> | 2025-02-22 23:01:54 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-02-22 23:01:54 +0000 |
| commit | 34f53baf85fb5c7163ec5d71a8ab9d45d3f271b6 (patch) | |
| tree | 7920fec1203e8e96463a142f5f6da6164e76e684 /azalea-physics/src/clip.rs | |
| parent | bdd2fc91e11e2896d8e1c7046df247e1075bd40d (diff) | |
| download | azalea-drasl-34f53baf85fb5c7163ec5d71a8ab9d45d3f271b6.tar.xz | |
update to rust edition 2024
Diffstat (limited to 'azalea-physics/src/clip.rs')
| -rw-r--r-- | azalea-physics/src/clip.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/azalea-physics/src/clip.rs b/azalea-physics/src/clip.rs index b6e6a9f9..ea5940a5 100644 --- a/azalea-physics/src/clip.rs +++ b/azalea-physics/src/clip.rs @@ -1,21 +1,21 @@ use std::collections::HashSet; use azalea_block::{ - fluid_state::{FluidKind, FluidState}, BlockState, + fluid_state::{FluidKind, FluidState}, }; use azalea_core::{ aabb::AABB, block_hit_result::BlockHitResult, direction::{Axis, Direction}, - math::{self, lerp, EPSILON}, + math::{self, EPSILON, lerp}, position::{BlockPos, Vec3}, }; use azalea_inventory::ItemStack; use azalea_world::ChunkStorage; use bevy_ecs::entity::Entity; -use crate::collision::{BlockWithShape, VoxelShape, EMPTY_SHAPE}; +use crate::collision::{BlockWithShape, EMPTY_SHAPE, VoxelShape}; #[derive(Debug, Clone)] pub struct ClipContext { |
