mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
10 lines
213 B
Rust
10 lines
213 B
Rust
use packet_macros::GamePacket;
|
|
|
|
#[derive(Clone, Debug, GamePacket)]
|
|
pub struct ClientboundEntityVelocityPacket {
|
|
#[varint]
|
|
pub entity_id: u32,
|
|
pub x_vel: i16,
|
|
pub y_vel: i16,
|
|
pub z_vel: i16,
|
|
}
|