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