azalea_protocol/packets/config/
c_update_enabled_features.rs

1use azalea_buf::AzBuf;
2use azalea_registry::identifier::Identifier;
3use azalea_protocol_macros::ClientboundConfigPacket;
4
5#[derive(AzBuf, ClientboundConfigPacket, Clone, Debug, PartialEq)]
6pub struct ClientboundUpdateEnabledFeatures {
7    pub features: Vec<Identifier>,
8}