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

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