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

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