aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_debug_block_value.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/game/c_debug_block_value.rs')
-rw-r--r--azalea-protocol/src/packets/game/c_debug_block_value.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/azalea-protocol/src/packets/game/c_debug_block_value.rs b/azalea-protocol/src/packets/game/c_debug_block_value.rs
new file mode 100644
index 00000000..1c78b6d5
--- /dev/null
+++ b/azalea-protocol/src/packets/game/c_debug_block_value.rs
@@ -0,0 +1,11 @@
+use azalea_buf::AzBuf;
+use azalea_core::position::BlockPos;
+use azalea_protocol_macros::ClientboundGamePacket;
+
+use crate::common::debug_subscription::DebugSubscriptionUpdate;
+
+#[derive(Clone, Debug, AzBuf, PartialEq, ClientboundGamePacket)]
+pub struct ClientboundDebugBlockValue {
+ pub block_pos: BlockPos,
+ pub update: DebugSubscriptionUpdate,
+}