diff options
Diffstat (limited to 'azalea-protocol/src/common')
| -rw-r--r-- | azalea-protocol/src/common/client_information.rs | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/azalea-protocol/src/common/client_information.rs b/azalea-protocol/src/common/client_information.rs index 5dedd1a8..c5dd83d7 100644 --- a/azalea-protocol/src/common/client_information.rs +++ b/azalea-protocol/src/common/client_information.rs @@ -2,6 +2,7 @@ use std::io::{self, Cursor}; use azalea_buf::{AzBuf, AzaleaRead, AzaleaWrite}; use azalea_core::bitset::FixedBitSet; +use azalea_entity::HumanoidArm; use bevy_ecs::component::Component; /// A component that contains some of the "settings" for this client that are @@ -60,13 +61,6 @@ pub enum ChatVisibility { Hidden = 2, } -#[derive(AzBuf, Clone, Copy, Debug, PartialEq, Eq, Default)] -pub enum HumanoidArm { - Left = 0, - #[default] - Right = 1, -} - #[derive(Clone, Copy, Debug, PartialEq, Eq)] pub struct ModelCustomization { pub cape: bool, |
