aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/clientbound_disconnect_packet.rs
blob: bc4b83cb41cbd006e9637d7eeb4f82754c1df0c0 (plain)
1
2
3
4
5
6
7
8
use azalea_buf::McBuf;
use azalea_chat::component::Component;
use azalea_protocol_macros::ClientboundGamePacket;

#[derive(Clone, Debug, McBuf, ClientboundGamePacket)]
pub struct ClientboundDisconnectPacket {
    pub reason: Component,
}