FittsLaw/Assets/Oculus/Platform/Scripts/IVoipPCMSource.cs
2018-10-14 23:33:23 -04:00

14 lines
215 B
C#

namespace Oculus.Platform
{
public interface IVoipPCMSource
{
int GetPCM(float[] dest, int length);
void SetSenderID(ulong senderID);
void Update();
int PeekSizeElements();
}
}