Assignment for RMIT Mixed Reality in 2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
202 B

  1. namespace Oculus.Platform
  2. {
  3. public interface IVoipPCMSource
  4. {
  5. int GetPCM(float[] dest, int length);
  6. void SetSenderID(ulong senderID);
  7. void Update();
  8. int PeekSizeElements();
  9. }
  10. }