aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/config/c_transfer.rs
blob: 963137b75faccec17c5ba59f3feadf907a1fd092 (plain)
1
2
3
4
5
6
7
8
9
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundConfigPacket;

#[derive(AzBuf, ClientboundConfigPacket, Clone, Debug, PartialEq)]
pub struct ClientboundTransfer {
    pub host: String,
    #[var]
    pub port: u32,
}