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

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