BizHawk/BizHawk.Emulation/Interfaces/ISoundProvider.cs

9 lines
148 B
C#

namespace BizHawk
{
public interface ISoundProvider
{
void GetSamples(short[] samples);
void DiscardSamples();
}
}