Files
ApexSurgery/Assets/Oculus/Platform/Scripts/IMicrophone.cs
T
2025-07-04 20:33:06 +03:00

16 lines
206 B
C#

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