Files
Heroes_of_Hiis/Assets/Oculus/Platform/Scripts/IVoipPCMSource.cs
Helar Jaadla cbeb10ec35 clean project
2022-03-07 17:52:41 +02: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();
}
}