blob: d3fce38436694efc7c9b7e89d2d13a34615ef290 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
use azalea_buf::AzBuf;
use azalea_core::entity_id::MinecraftEntityId;
use azalea_entity::EntityMetadataItems;
use azalea_protocol_macros::ClientboundGamePacket;
#[derive(AzBuf, ClientboundGamePacket, Clone, Debug, PartialEq)]
pub struct ClientboundSetEntityData {
#[var]
pub id: MinecraftEntityId,
pub packed_items: EntityMetadataItems,
}
|