Files
2026-02-21 16:45:37 +08:00

12 lines
119 B
C#

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