blob: 18d2e73b1e95913cde9b6629fb0456d16addc5a8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
use azalea_buf::AzBuf;
use azalea_core::resource_location::ResourceLocation;
use azalea_protocol_macros::ClientboundConfigPacket;
use simdnbt::owned::NbtCompound;
#[derive(Clone, Debug, AzBuf, PartialEq, ClientboundConfigPacket)]
pub struct ClientboundRegistryData {
pub registry_id: ResourceLocation,
pub entries: Vec<(ResourceLocation, Option<NbtCompound>)>,
}
|