aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/login/clientbound_custom_query_packet.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/login/clientbound_custom_query_packet.rs')
-rwxr-xr-xazalea-protocol/src/packets/login/clientbound_custom_query_packet.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/azalea-protocol/src/packets/login/clientbound_custom_query_packet.rs b/azalea-protocol/src/packets/login/clientbound_custom_query_packet.rs
deleted file mode 100755
index 75993fd9..00000000
--- a/azalea-protocol/src/packets/login/clientbound_custom_query_packet.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-use std::hash::Hash;
-
-use azalea_buf::{McBuf, UnsizedByteArray};
-use azalea_core::resource_location::ResourceLocation;
-use azalea_protocol_macros::ClientboundLoginPacket;
-
-#[derive(Hash, Clone, Debug, McBuf, ClientboundLoginPacket)]
-pub struct ClientboundCustomQueryPacket {
- #[var]
- pub transaction_id: u32,
- pub identifier: ResourceLocation,
- pub data: UnsizedByteArray,
-}