1
2
3
4
5
6
7
use azalea_protocol::packets::game::clientbound_login_packet::registry::RegistryRoot;
use bevy_ecs::component::Component;
use derive_more::Deref;

/// The registries that the server sent us on login.
#[derive(Clone, Debug, Component, Deref)]
pub struct ReceivedRegistries(pub RegistryRoot);