blob: d58ce502281849d75c492d107e8dd120088b7cfd (
plain)
1
2
3
4
5
6
7
8
9
|
use azalea_buf::AzBuf;
use azalea_protocol_macros::ServerboundConfigPacket;
use crate::common::client_information::ClientInformation;
#[derive(Clone, Debug, AzBuf, ServerboundConfigPacket, PartialEq, Eq)]
pub struct ServerboundClientInformation {
pub information: ClientInformation,
}
|