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