Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. namespace WaveEdit.NET.Interfaces
  2. {
  3.     public interface IWaveChannel
  4.     {
  5.         float[] Data{ get; set; }
  6.         IEnumerable<Tuple<float, float>> MinMax(int startPos, int endPos, int samplesPerMinMax);
  7.     }
  8.     public interface IInternalWave
  9.     {
  10.         int ChannelCount { get; }
  11.         int FrameCount { get; }
  12.         List<IWaveChannel> Channels { get; set; }
  13.        
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement