aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_debug_event.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/game/c_debug_event.rs')
-rw-r--r--azalea-protocol/src/packets/game/c_debug_event.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/azalea-protocol/src/packets/game/c_debug_event.rs b/azalea-protocol/src/packets/game/c_debug_event.rs
new file mode 100644
index 00000000..c53e5e12
--- /dev/null
+++ b/azalea-protocol/src/packets/game/c_debug_event.rs
@@ -0,0 +1,9 @@
+use azalea_buf::AzBuf;
+use azalea_protocol_macros::ClientboundGamePacket;
+
+use crate::common::debug_subscription::DebugSubscriptionEvent;
+
+#[derive(Clone, Debug, AzBuf, PartialEq, ClientboundGamePacket)]
+pub struct ClientboundDebugEvent {
+ pub event: DebugSubscriptionEvent,
+}