blob: 332421d875231f0ba31a5b1c0bfa917d29b01ea7 (
plain)
1
2
3
4
5
6
7
8
9
|
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundConfigPacket;
#[derive(Clone, Debug, AzBuf, ClientboundConfigPacket)]
pub struct ClientboundTransfer {
pub host: String,
#[var]
pub port: u32,
}
|