use azalea_buf::AzBuf; use azalea_protocol_macros::ClientboundLoginPacket; #[derive(AzBuf, ClientboundLoginPacket, Clone, Debug, PartialEq)] pub struct ClientboundHello { #[limit(20)] pub server_id: String, pub public_key: Vec, pub challenge: Vec, pub should_authenticate: bool, }