aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/serverbound_select_trade_packet.rs
blob: 78e68bc0008cabd049b0c294c1e1ec8a5e626f65 (plain)
1
2
3
4
5
6
7
8
use azalea_buf::McBuf;
use packet_macros::ServerboundGamePacket;

#[derive(Clone, Debug, McBuf, ServerboundGamePacket)]
pub struct ServerboundSelectTradePacket {
    #[var]
    pub item: u32,
}