aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/s_container_button_click.rs
blob: 909772f3c8d260397b6fb2553298d876e7210e62 (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 ServerboundContainerButtonClick {
    pub container_id: u8,
    pub button_id: u8,
}