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

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