Files
Voile/Source/Resources/Sound.cs

12 lines
270 B
C#

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)
{
}
}
}