blob: 55ce36a5d67effd19c15e23f6fff29b3da8167cb (
plain)
1
2
3
4
5
6
7
8
|
use azalea_buf::McBuf;
use packet_macros::ClientboundGamePacket;
#[derive(Clone, Debug, McBuf, ClientboundGamePacket)]
pub struct ClientboundRemoveEntitiesPacket {
#[var]
pub entity_ids: Vec<u32>,
}
|