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

#[derive(Clone, Debug, AzBuf, ServerboundGamePacket)]
pub struct ServerboundContainerButtonClick {
    #[var]
    pub container_id: i32,
    #[var]
    pub button_id: u32,
}