diff options
| author | mat <github@matdoes.dev> | 2022-06-23 15:28:33 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-06-23 15:28:33 -0500 |
| commit | ba399c4440c2d182f55cba7fab068e1118bcc2b7 (patch) | |
| tree | 20188f93e3fe16b747350ef2b44678b188313c61 /azalea-core | |
| parent | 5ca49e680ed8519456dc9a9af84321d4b69dcbb3 (diff) | |
| download | azalea-drasl-ba399c4440c2d182f55cba7fab068e1118bcc2b7.tar.xz | |
switch things to use azalea-buf
Diffstat (limited to 'azalea-core')
| -rw-r--r-- | azalea-core/src/delta.rs | 2 | ||||
| -rw-r--r-- | azalea-core/src/particle/mod.rs | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/azalea-core/src/delta.rs b/azalea-core/src/delta.rs index 32517e0d..a4d02907 100644 --- a/azalea-core/src/delta.rs +++ b/azalea-core/src/delta.rs @@ -1,3 +1,5 @@ +pub use azalea_buf::McBuf; + /// Only works for up to 8 blocks #[derive(Clone, Debug, McBuf)] pub struct PositionDelta { diff --git a/azalea-core/src/particle/mod.rs b/azalea-core/src/particle/mod.rs index fc815a0b..5ca8ac8e 100644 --- a/azalea-core/src/particle/mod.rs +++ b/azalea-core/src/particle/mod.rs @@ -1,3 +1,5 @@ +use azalea_buf::{McBufReadable, McBufWritable}; +use std::io::{Read, Write}; #[derive(Debug, Clone, McBuf)] pub struct Particle { |
