aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/clientbound_entity_event_packet.rs
blob: d0cc72228ddf1a6ba3c67f55d79f9488e8fbfca3 (plain)
1
2
3
4
5
6
7
8
use packet_macros::{GamePacket, McBuf};

// we can't identify the status in azalea-protocol since they vary depending on the entity
#[derive(Clone, Debug, McBuf, GamePacket)]
pub struct ClientboundEntityEventPacket {
    pub entity_id: u32,
    pub event_id: u8,
}