mirror of
https://github.com/ConjureETS/MTI860_VR_Multi_Controller.git
synced 2026-03-24 12:31:15 +00:00
14 lines
202 B
C#
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();
|
|
}
|
|
}
|