mirror of
https://github.com/ConjureETS/MTI860_VR_Multi_Controller.git
synced 2026-03-24 20:41:14 +00:00
16 lines
188 B
C#
16 lines
188 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
using System;
|
|
|
|
namespace Oculus.Platform
|
|
{
|
|
public interface IMicrophone
|
|
{
|
|
void Start();
|
|
|
|
void Stop();
|
|
|
|
float[] Update();
|
|
}
|
|
}
|