10 lines
181 B
C#
10 lines
181 B
C#
![]() |
namespace BizHawk.Emulation.Common
|
|||
|
{
|
|||
|
public interface ISoundProvider
|
|||
|
{
|
|||
|
void GetSamples(short[] samples);
|
|||
|
void DiscardSamples();
|
|||
|
int MaxVolume { get; set; }
|
|||
|
}
|
|||
|
}
|