azalea_protocol/packets/game/
c_cookie_request.rs

1use azalea_buf::AzBuf;
2use azalea_registry::identifier::Identifier;
3use azalea_protocol_macros::ClientboundGamePacket;
4
5#[derive(AzBuf, ClientboundGamePacket, Clone, Debug, PartialEq)]
6pub struct ClientboundCookieRequest {
7    pub key: Identifier,
8}