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