azalea_protocol/packets/game/
c_rotate_head.rs1use azalea_buf::AzBuf;
2use azalea_protocol_macros::ClientboundGamePacket;
3use azalea_world::MinecraftEntityId;
4
5#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
6pub struct ClientboundRotateHead {
7 #[var]
8 pub entity_id: MinecraftEntityId,
9 pub y_head_rot: i8,
10}