using System; | |
using NAudio.Wave; | |
using UnityEngine; | |
namespace SomeNamespace | |
{ | |
public class BasicFileStreamingCapture | |
: MonoBehaviour, IMicrophoneCapture | |
{ | |
public bool IsRecording { get; private set; } | |
public TimeSpan Latency { get; private set; } | |
public WaveFormat StartCapture(string name) | |
{ | |
throw new NotImplementedException(); | |
} | |
public void StopCapture() | |
{ | |
throw new NotImplementedException(); | |
} | |
public void Subscribe(IMicrophoneSubscriber listener) | |
{ | |
throw new NotImplementedException(); | |
} | |
public bool Unsubscribe(IMicrophoneSubscriber listener) | |
{ | |
throw new NotImplementedException(); | |
} | |
public bool UpdateSubscribers() | |
{ | |
throw new NotImplementedException(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment