azalea_protocol/packets/config/
c_store_cookie.rs1use azalea_buf::AzBuf;
2use azalea_core::resource_location::ResourceLocation;
3use azalea_protocol_macros::ClientboundConfigPacket;
4
5#[derive(Clone, Debug, AzBuf, ClientboundConfigPacket)]
6pub struct ClientboundStoreCookie {
7 pub key: ResourceLocation,
8 pub payload: Vec<u8>,
9}