aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/login/clientbound_game_profile_packet.rs
blob: 2783159a9e4cefe42208f533ff580cbfd8d0b6f9 (plain)
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,
}