FineAudio/Sound.cs

14 lines
278 B
C#
Raw Normal View History

2021-01-20 02:06:10 +00:00
namespace MoonWorks.Audio
{
2021-01-20 03:26:30 +00:00
public abstract class Sound
2021-01-20 02:06:10 +00:00
{
internal AudioDevice Device { get; }
internal abstract FAudio.FAudioWaveFormatEx Format { get; }
2021-01-20 02:06:10 +00:00
public Sound(AudioDevice device)
{
Device = device;
2021-01-20 02:06:10 +00:00
}
}
}