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