aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/s_client_information.rs
blob: 5861212c73483c3ad45737b955b0f6b12522d6ed (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(Clone, Debug, AzBuf, ServerboundGamePacket)]
pub struct ServerboundClientInformation {
    pub information: ClientInformation,
}