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

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