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

#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
pub struct ClientboundSetCamera {
    #[var]
    pub camera_id: MinecraftEntityId,
}