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

#[derive(AzBuf, ClientboundGamePacket, Clone, Debug, PartialEq)]
pub struct ClientboundSetHeldSlot {
    #[var]
    pub slot: u32,
}