azalea_protocol/packets/config/
c_disconnect.rs

1use azalea_buf::AzBuf;
2use azalea_chat::FormattedText;
3use azalea_protocol_macros::ClientboundConfigPacket;
4
5#[derive(Clone, Debug, AzBuf, ClientboundConfigPacket)]
6pub struct ClientboundDisconnect {
7    pub reason: FormattedText,
8}