cleanup some unsightly comments in ISyncSoundProvider

This commit is contained in:
adelikat 2016-12-08 19:54:38 -06:00
parent 657de56123
commit 5e800b7bba
1 changed files with 2 additions and 7 deletions

View File

@ -3,14 +3,10 @@
public interface ISyncSoundProvider
{
/// <summary>
///
/// </summary>
/// <param name="samples"></param>
/// <param name="nsamp">number of sample PAIRS available</param>
void GetSamples(out short[] samples, out int nsamp);
/// <summary>
///
/// </summary>
void DiscardSamples();
}
@ -21,10 +17,9 @@
{
private readonly ISoundProvider source;
private readonly int spf;
/// <summary>
///
/// </summary>
/// <param name="source"></param>
/// <param name="spf">number of sample pairs to request and provide on each GetSamples() call</param>
public FakeSyncSound(ISoundProvider source, int spf)
{