aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/serverbound_container_click_packet.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/game/serverbound_container_click_packet.rs')
-rwxr-xr-xazalea-protocol/src/packets/game/serverbound_container_click_packet.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/azalea-protocol/src/packets/game/serverbound_container_click_packet.rs b/azalea-protocol/src/packets/game/serverbound_container_click_packet.rs
deleted file mode 100755
index e2954720..00000000
--- a/azalea-protocol/src/packets/game/serverbound_container_click_packet.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-use std::collections::HashMap;
-
-use azalea_buf::McBuf;
-use azalea_inventory::{operations::ClickType, ItemSlot};
-use azalea_protocol_macros::ServerboundGamePacket;
-
-#[derive(Clone, Debug, McBuf, ServerboundGamePacket)]
-pub struct ServerboundContainerClickPacket {
- pub container_id: u8,
- #[var]
- pub state_id: u32,
- pub slot_num: i16,
- pub button_num: u8,
- pub click_type: ClickType,
- pub changed_slots: HashMap<u16, ItemSlot>,
- pub carried_item: ItemSlot,
-}