blob: 4ce4547c3c44341739c93483b7dae5f52dee6fba (
plain)
1
2
3
4
5
6
7
8
|
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundGamePacket;
#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
pub struct ClientboundSetCamera {
#[var]
pub camera_id: u32,
}
|