aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/login/c_cookie_request.rs
blob: d0bb0cd7f02f8ad00032a89ab8606c279b3b3613 (plain)
1
2
3
4
5
6
7
8
use azalea_buf::AzBuf;
use azalea_core::resource_location::ResourceLocation;
use azalea_protocol_macros::ClientboundLoginPacket;

#[derive(Clone, Debug, AzBuf, ClientboundLoginPacket)]
pub struct ClientboundCookieRequest {
    pub key: ResourceLocation,
}