blob: 2bc77540128555575593f629797ce7113adfc201 (
plain)
1
2
3
4
5
6
7
8
9
|
use azalea_buf::McBuf;
use azalea_protocol_macros::ClientboundGamePacket;
#[derive(Clone, Debug, McBuf, ClientboundGamePacket)]
pub struct ClientboundRotateHeadPacket {
#[var]
pub entity_id: u32,
pub y_head_rot: i8,
}
|