aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/serverbound_use_item_packet.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/game/serverbound_use_item_packet.rs')
-rwxr-xr-xazalea-protocol/src/packets/game/serverbound_use_item_packet.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/azalea-protocol/src/packets/game/serverbound_use_item_packet.rs b/azalea-protocol/src/packets/game/serverbound_use_item_packet.rs
deleted file mode 100755
index b9f12f23..00000000
--- a/azalea-protocol/src/packets/game/serverbound_use_item_packet.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-use azalea_buf::McBuf;
-use azalea_protocol_macros::ServerboundGamePacket;
-
-use crate::packets::game::serverbound_interact_packet::InteractionHand;
-
-#[derive(Clone, Debug, McBuf, ServerboundGamePacket)]
-pub struct ServerboundUseItemPacket {
- pub hand: InteractionHand,
- #[var]
- pub sequence: u32,
- pub yaw: f32,
- pub pitch: f32,
-}