aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/clientbound_disconnect_packet.rs
blob: 2e72b19b6aa9ba219cf185a55027e7e09a60337c (plain)
1
2
3
4
5
6
7
use azalea_chat::component::Component;
use packet_macros::GamePacket;

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