aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_rotate_head.rs
blob: 26e5594892b50193042711ff98020f6983398d74 (plain)
1
2
3
4
5
6
7
8
9
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundGamePacket;

#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
pub struct ClientboundRotateHead {
    #[var]
    pub entity_id: u32,
    pub y_head_rot: i8,
}