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

// 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,
}