aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/s_container_close.rs
blob: f19e0f2f19c8ec51aee749acf861dd1779da746e (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 ServerboundContainerClose {
    #[var]
    pub container_id: i32,
}