aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_cookie_request.rs
blob: 283b686da737e0c2842f58f9f8101254883b37c1 (plain)
1
2
3
4
5
6
7
8
use azalea_buf::AzBuf;
use azalea_registry::identifier::Identifier;
use azalea_protocol_macros::ClientboundGamePacket;

#[derive(Clone, Debug, AzBuf, PartialEq, ClientboundGamePacket)]
pub struct ClientboundCookieRequest {
    pub key: Identifier,
}