aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_remove_entities.rs
blob: 5424cb3c9d657d8752ef313232562f81b79225fa (plain)
1
2
3
4
5
6
7
8
9
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundGamePacket;
use azalea_world::MinecraftEntityId;

#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
pub struct ClientboundRemoveEntities {
    #[var]
    pub entity_ids: Vec<MinecraftEntityId>,
}