aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/config/c_update_enabled_features.rs
blob: 9fade41c0a5e3680f83c6eae6be5e3c81a90557a (plain)
1
2
3
4
5
6
7
8
use azalea_buf::AzBuf;
use azalea_registry::identifier::Identifier;
use azalea_protocol_macros::ClientboundConfigPacket;

#[derive(AzBuf, ClientboundConfigPacket, Clone, Debug, PartialEq)]
pub struct ClientboundUpdateEnabledFeatures {
    pub features: Vec<Identifier>,
}