Remotely/ScreenCast.Core/Interfaces/IAudioCapturer.cs
2020-04-15 12:59:18 -07:00

11 lines
210 B
C#

using System;
namespace Remotely.ScreenCast.Core.Interfaces
{
public interface IAudioCapturer
{
event EventHandler<byte[]> AudioSampleReady;
void ToggleAudio(bool toggleOn);
}
}