blob: 845527ae8b08271a8070ce056db9be8b48236fd4 (
plain)
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);
|