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