blob: 5db8e00b4b19b8a478af921d305853314143d32a (
plain)
1
2
3
4
5
6
7
8
|
use azalea_buf::McBuf;
use packet_macros::ServerboundGamePacket;
#[derive(Clone, Debug, McBuf, ServerboundGamePacket)]
pub struct ServerboundPickItemPacket {
#[var]
pub slot: u32,
}
|