BizHawk/BizHawk.Emulation.Common/Interfaces/ISoundProvider.cs

10 lines
181 B
C#

namespace BizHawk.Emulation.Common
{
public interface ISoundProvider
{
void GetSamples(short[] samples);
void DiscardSamples();
int MaxVolume { get; set; }
}
}