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

#[derive(AzBuf, ClientboundGamePacket, Clone, Debug, PartialEq)]
pub struct ClientboundSetCursorItem {
    pub contents: ItemStack,
}