7 lines
115 B
C#
7 lines
115 B
C#
namespace Core.Interfaces
|
|
{
|
|
public interface IAudioDevice
|
|
{
|
|
void AddSample(bool isHigh);
|
|
}
|
|
} |