SoundIOSampleRateRange.cs 288 B

123456789101112131415
  1. using System;
  2. namespace SoundIOSharp
  3. {
  4. public struct SoundIOSampleRateRange
  5. {
  6. internal SoundIOSampleRateRange(int min, int max)
  7. {
  8. Min = min;
  9. Max = max;
  10. }
  11. public readonly int Min;
  12. public readonly int Max;
  13. }
  14. }