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

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