mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 23:44:38 +00:00
11 lines
289 B
Rust
11 lines
289 B
Rust
use azalea_buf::AzBuf;
|
|
use azalea_core::position::Vec3;
|
|
use azalea_protocol_macros::ServerboundGamePacket;
|
|
|
|
use crate::common::movements::MoveFlags;
|
|
|
|
#[derive(Clone, Debug, AzBuf, ServerboundGamePacket)]
|
|
pub struct ServerboundMovePlayerPos {
|
|
pub pos: Vec3,
|
|
pub flags: MoveFlags,
|
|
}
|