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