1
2
3
4
5
6
7
use crate::{Decode, Encode, Packet, VarInt, Velocity};

#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
pub struct EntityVelocityUpdateS2c {
    pub entity_id: VarInt,
    pub velocity: Velocity,
}