azalea_protocol/packets/game/
c_remove_entities.rs

1use azalea_buf::AzBuf;
2use azalea_protocol_macros::ClientboundGamePacket;
3use azalea_world::MinecraftEntityId;
4
5#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
6pub struct ClientboundRemoveEntities {
7    #[var]
8    pub entity_ids: Vec<MinecraftEntityId>,
9}