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