2016-02-28 18:35:41 +00:00
|
|
|
|
namespace BizHawk.Emulation.Common
|
2014-12-01 16:56:51 +00:00
|
|
|
|
{
|
|
|
|
|
public class NullSound : ISoundProvider
|
|
|
|
|
{
|
|
|
|
|
public static readonly NullSound SilenceProvider = new NullSound();
|
|
|
|
|
|
|
|
|
|
public void GetSamples(short[] samples) { }
|
|
|
|
|
public void DiscardSamples() { }
|
|
|
|
|
public int MaxVolume { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|