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

#[derive(Clone, Debug, McBuf, ClientboundGamePacket)]
pub struct ClientboundSetCameraPacket {
    #[var]
    pub camera_id: u32,
}