BizHawk/BizHawk.Emulation/Interfaces/ISoundProvider.cs

9 lines
148 B
C#
Raw Normal View History

2011-01-11 02:55:51 +00:00
namespace BizHawk
{
public interface ISoundProvider
{
void GetSamples(short[] samples);
void DiscardSamples();
2011-01-11 02:55:51 +00:00
}
}