2022-03-07 17:52:41 +02:00

16 lines
188 B
C#

using UnityEngine;
using System.Collections;
using System;
namespace Oculus.Platform
{
public interface IMicrophone
{
void Start();
void Stop();
float[] Update();
}
}