aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/s_debug_subscription_request.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/game/s_debug_subscription_request.rs')
-rw-r--r--azalea-protocol/src/packets/game/s_debug_subscription_request.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/azalea-protocol/src/packets/game/s_debug_subscription_request.rs b/azalea-protocol/src/packets/game/s_debug_subscription_request.rs
new file mode 100644
index 00000000..ea31b113
--- /dev/null
+++ b/azalea-protocol/src/packets/game/s_debug_subscription_request.rs
@@ -0,0 +1,8 @@
+use azalea_buf::AzBuf;
+use azalea_protocol_macros::ServerboundGamePacket;
+use azalea_registry::DebugSubscription;
+
+#[derive(Clone, Debug, AzBuf, PartialEq, ServerboundGamePacket)]
+pub struct ServerboundDebugSubscriptionRequest {
+ pub subscriptions: Vec<DebugSubscription>,
+}