aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/s_move_vehicle.rs
blob: f9c9dc28590ca191f803e6a835da24f9dd1475fa (plain)
1
2
3
4
5
6
7
8
9
10
use azalea_buf::AzBuf;
use azalea_core::position::Vec3;
use azalea_entity::LookDirection;
use azalea_protocol_macros::ServerboundGamePacket;

#[derive(AzBuf, Clone, Debug, PartialEq, ServerboundGamePacket)]
pub struct ServerboundMoveVehicle {
    pub pos: Vec3,
    pub look_direction: LookDirection,
}