CUETools.DSP.Mixer: split classes into separate files.

This commit is contained in:
karamanolev
2011-10-24 15:25:12 +00:00
parent 524befe7b9
commit 7a6e2eb5aa
6 changed files with 372 additions and 379 deletions

View File

@@ -0,0 +1,11 @@
using System;
using CUETools.Codecs;
namespace CUETools.DSP.Mixer
{
public class AudioReadEventArgs : EventArgs
{
public IAudioSource source;
public AudioBuffer buffer;
}
}