aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_update_enabled_features.rs
blob: d4dac48361eadf86c61ce4d28282a5bd09465e5c (plain)
1
2
3
4
5
6
7
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>,
}