diff options
Diffstat (limited to 'azalea-core/src/position.rs')
| -rwxr-xr-x | azalea-core/src/position.rs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/azalea-core/src/position.rs b/azalea-core/src/position.rs index d87e21a7..de0276a3 100755 --- a/azalea-core/src/position.rs +++ b/azalea-core/src/position.rs @@ -3,10 +3,6 @@ //! The most common ones are [`Vec3`] and [`BlockPos`], which are usually used //! for entity positions and block positions, respectively. -use crate::resource_location::ResourceLocation; -use azalea_buf::{BufReadError, McBuf, McBufReadable, McBufWritable}; -#[cfg(feature = "serde")] -use serde::{Deserialize, Serialize}; use std::{ fmt, hash::Hash, @@ -15,6 +11,12 @@ use std::{ str::FromStr, }; +use azalea_buf::{BufReadError, McBuf, McBufReadable, McBufWritable}; +#[cfg(feature = "serde")] +use serde::{Deserialize, Serialize}; + +use crate::resource_location::ResourceLocation; + macro_rules! vec3_impl { ($name:ident, $type:ty) => { impl $name { |
