namespace DaggerFramework { public class Sound : Resource { public float PitchScale { get; set; } = 1.0f; public float Volume { get; set; } = 1.0f; public Sound(string path, byte[] buffer) : base(path, buffer) { } } }