blob: 5a2490bb9838495c12dcc331d7860ca83fbafbba (
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(AzBuf, Clone, Debug, Eq, PartialEq, ServerboundConfigPacket)]
pub struct ServerboundClientInformation {
pub information: ClientInformation,
}
|