chunkedge_protocol/packets/play/
transfer_s2c.rs

1use chunkedge_binary::{Bounded, Decode, Encode, VarInt};
2
3use crate::Packet;
4#[derive(Clone, Debug, Encode, Decode, Packet)]
5pub struct TransferS2c<'a> {
6    pub host: Bounded<&'a str, 32767>,
7    pub port: VarInt,
8}