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.

15 lines
188 B

  1. using UnityEngine;
  2. using System.Collections;
  3. using System;
  4. namespace Oculus.Platform
  5. {
  6. public interface IMicrophone
  7. {
  8. void Start();
  9. void Stop();
  10. float[] Update();
  11. }
  12. }