Files
Voile/DaggerFramework/Source/Resources/Sound.cs
2023-06-20 00:18:35 +02:00

18 lines
328 B
C#

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