Phillipes_Fablab/Assets/Oculus/Platform/Scripts/IVoipPCMSource.cs
2023-01-09 11:46:20 +01:00

14 lines
202 B
C#

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