azalea_protocol/packets/config/c_registry_data.rs
1use azalea_buf::AzBuf;
2use azalea_core::resource_location::ResourceLocation;
3use azalea_protocol_macros::ClientboundConfigPacket;
4use simdnbt::owned::NbtCompound;
5
6#[derive(Clone, Debug, AzBuf, ClientboundConfigPacket)]
7pub struct ClientboundRegistryData {
8 pub registry_id: ResourceLocation,
9 pub entries: Vec<(ResourceLocation, Option<NbtCompound>)>,
10}