aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_player_rotation.rs
blob: 3e214203d17420a801ad945633bbe33d64e491a7 (plain)
1
2
3
4
5
6
7
8
use azalea_buf::AzBuf;
use azalea_entity::LookDirection;
use azalea_protocol_macros::ClientboundGamePacket;

#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
pub struct ClientboundPlayerRotation {
    pub look_direction: LookDirection,
}