17 lines
381 B
C#
17 lines
381 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace BizHawk.Emulation.Common
|
|
{
|
|
public class NullSound : ISoundProvider
|
|
{
|
|
public static readonly NullSound SilenceProvider = new NullSound();
|
|
|
|
public void GetSamples(short[] samples) { }
|
|
public void DiscardSamples() { }
|
|
public int MaxVolume { get; set; }
|
|
}
|
|
}
|