Files
Voile/Source/Resources/Sound.cs
2023-06-17 00:56:17 +02:00

19 lines
372 B
C#

namespace DaggerFramework
{
public class Sound : Resource
{
public SoundFormat Format { get; set; }
public int SampleRate { get; set; }
public int BufferSize { get; set; }
public Sound(string path, byte[] buffer) : base(path, buffer)
{
}
}
public enum SoundFormat
{
Mono,
Stereo
}
}