Browse Source

oops last checkin broke build. Adding ISampleNotifier but this is strictly WIP at the moment

pull/1/head
markheath 17 years ago
parent
commit
bc45bf25b4
  1. 18
      NAudio/Wave/WaveStreams/ISampleNotifier.cs

18
NAudio/Wave/WaveStreams/ISampleNotifier.cs

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace NAudio.Wave
{
public class ISampleNotifier
{
public event EventHandler Block;
public event EventHandler<SampleEventArgs> Sample;
}
public class SampleEventArgs : EventArgs
{
public float left;
public float right;
}
}
Loading…
Cancel
Save