FittsLaw/Assets/Oculus/Platform/Scripts/IVoipPCMSource.cs

14 lines
215 B
C#
Raw Normal View History

2018-10-09 20:59:57 -04:00
namespace Oculus.Platform
{
public interface IVoipPCMSource
{
int GetPCM(float[] dest, int length);
void SetSenderID(ulong senderID);
void Update();
int PeekSizeElements();
}
}