16 lines
203 B
C#
16 lines
203 B
C#
|
using UnityEngine;
|
||
|
using System.Collections;
|
||
|
using System;
|
||
|
|
||
|
namespace Oculus.Platform
|
||
|
{
|
||
|
public interface IMicrophone
|
||
|
{
|
||
|
void Start();
|
||
|
|
||
|
void Stop();
|
||
|
|
||
|
float[] Update();
|
||
|
}
|
||
|
}
|