aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/clientbound_entity_event_packet.rs
blob: 1b06bff7c9437feb86ddaee3ec587338d089f932 (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: i32,
    pub entity_status: i8,
}