mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
13 lines
282 B
Rust
13 lines
282 B
Rust
use packet_macros::{GamePacket, McBuf};
|
|
|
|
#[derive(Clone, Debug, McBuf, GamePacket)]
|
|
pub struct ClientboundMoveEntityPosRotPacket {
|
|
#[var]
|
|
pub entity_id: i32,
|
|
pub xa: i16,
|
|
pub ya: i16,
|
|
pub za: i16,
|
|
pub y_rot: i8,
|
|
pub x_rot: i8,
|
|
pub on_ground: bool,
|
|
}
|