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

#[derive(Clone, Debug, AzBuf, PartialEq, ServerboundGamePacket)]
pub struct ServerboundContainerClose {
    #[var]
    pub container_id: i32,
}