1use azalea_buf::AzBuf; 2 3use crate::resource_location::ResourceLocation; 4 5#[derive(Clone, Debug, PartialEq, AzBuf)] 6pub struct CustomSound { 7 pub location: ResourceLocation, 8 pub fixed_range: Option<f32>, 9}