aboutsummaryrefslogtreecommitdiff
path: root/azalea-core/src/sound.rs
blob: e7e0f2077c342f75b646957f5c9edd0da2abbe90 (plain)
1
2
3
4
5
6
7
8
9
use azalea_buf::AzBuf;
use azalea_registry::identifier::Identifier;

#[cfg_attr(feature = "serde", derive(serde::Serialize))]
#[derive(AzBuf, Clone, Debug, simdnbt::Deserialize, PartialEq)]
pub struct CustomSound {
    pub sound_id: Identifier,
    pub range: Option<f32>,
}