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

use crate::resource_location::ResourceLocation;

#[derive(Clone, Debug, PartialEq, AzBuf, Serialize)]
pub struct CustomSound {
    pub location: ResourceLocation,
    pub fixed_range: Option<f32>,
}