1 2 3 4 5 6 7 8
use azalea_auth::game_profile::GameProfile; use azalea_buf::McBuf; use azalea_protocol_macros::ClientboundLoginPacket; #[derive(Clone, Debug, McBuf, ClientboundLoginPacket)] pub struct ClientboundGameProfilePacket { pub game_profile: GameProfile, }