7b66cb0d90
* audio: Cleanup SoundIO and fix OpenAL issue * fix tabs by spaces * Fix extra spaces * Fix SoundIO.cs * Fix ContainsAudioOutBuffer
15 lines
288 B
C#
15 lines
288 B
C#
using System;
|
|
namespace SoundIOSharp
|
|
{
|
|
public struct SoundIOSampleRateRange
|
|
{
|
|
internal SoundIOSampleRateRange(int min, int max)
|
|
{
|
|
Min = min;
|
|
Max = max;
|
|
}
|
|
|
|
public readonly int Min;
|
|
public readonly int Max;
|
|
}
|
|
}
|