azalea_protocol/packets/config/c_custom_payload.rs
1use azalea_buf::{AzBuf, UnsizedByteArray};
2use azalea_core::resource_location::ResourceLocation;
3use azalea_protocol_macros::ClientboundConfigPacket;
4
5#[derive(Clone, Debug, AzBuf, PartialEq, ClientboundConfigPacket)]
6pub struct ClientboundCustomPayload {
7 pub identifier: ResourceLocation,
8 pub data: UnsizedByteArray,
9}