aboutsummaryrefslogtreecommitdiff
path: root/azalea-core/src/aabb.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-core/src/aabb.rs')
-rwxr-xr-xazalea-core/src/aabb.rs9
1 files changed, 6 insertions, 3 deletions
diff --git a/azalea-core/src/aabb.rs b/azalea-core/src/aabb.rs
index 7ad4a657..61b015cb 100755
--- a/azalea-core/src/aabb.rs
+++ b/azalea-core/src/aabb.rs
@@ -1,6 +1,9 @@
-use crate::{Axis, BlockHitResult, BlockPos, Direction, Vec3};
-
-pub const EPSILON: f64 = 1.0E-7;
+use crate::{
+ block_hit_result::BlockHitResult,
+ direction::{Axis, Direction},
+ math::EPSILON,
+ position::{BlockPos, Vec3},
+};
/// A rectangular prism with a starting and ending point.
#[derive(Copy, Clone, Debug, PartialEq, Default)]