aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/clientbound_set_passengers_packet.rs
blob: ac337d6e6ac716d88e58d7defe8d64d14a1fbcf6 (plain)
1
2
3
4
5
6
7
8
9
10
use azalea_buf::McBuf;
use azalea_protocol_macros::ClientboundGamePacket;

#[derive(Clone, Debug, McBuf, ClientboundGamePacket)]
pub struct ClientboundSetPassengersPacket {
    #[var]
    pub vehicle: u32,
    #[var]
    pub passengers: Vec<u32>,
}