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

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