BizHawk/BizHawk.Emulation/Interfaces/ISoundProvider.cs

8 lines
122 B
C#

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