Mark van Renswoude
ff1e1ca74c
Implemented orchestrator Implemented mock device Implemented serial device Implemented volume action Removed old implementation
17 lines
392 B
C#
17 lines
392 B
C#
using System;
|
|
using AudioSwitcher.AudioApi.CoreAudio;
|
|
|
|
namespace MassiveKnob.Plugin.CoreAudio
|
|
{
|
|
public static class CoreAudioControllerInstance
|
|
{
|
|
private static readonly Lazy<CoreAudioController> Instance = new Lazy<CoreAudioController>();
|
|
|
|
|
|
public static CoreAudioController Acquire()
|
|
{
|
|
return Instance.Value;
|
|
}
|
|
}
|
|
}
|