mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
9 lines
271 B
Rust
9 lines
271 B
Rust
use azalea_buf::McBuf;
|
|
use azalea_protocol_macros::ServerboundConfigPacket;
|
|
|
|
use crate::common::ClientInformation;
|
|
|
|
#[derive(Clone, Debug, McBuf, ServerboundConfigPacket, PartialEq, Eq)]
|
|
pub struct ServerboundClientInformation {
|
|
pub information: ClientInformation,
|
|
}
|