aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_container_close.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/game/c_container_close.rs')
-rw-r--r--azalea-protocol/src/packets/game/c_container_close.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/azalea-protocol/src/packets/game/c_container_close.rs b/azalea-protocol/src/packets/game/c_container_close.rs
new file mode 100644
index 00000000..dda6153b
--- /dev/null
+++ b/azalea-protocol/src/packets/game/c_container_close.rs
@@ -0,0 +1,7 @@
+use azalea_buf::AzBuf;
+use azalea_protocol_macros::ClientboundGamePacket;
+
+#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
+pub struct ClientboundContainerClose {
+ pub container_id: u8,
+}