From 9b45ca0f1d0a9bed314968e138ecc4361df136d4 Mon Sep 17 00:00:00 2001 From: Simon G Date: Sun, 11 Apr 2021 00:16:08 +0200 Subject: [PATCH] - adapt to changes --- Lib.Audio/Factories/IControllableFactory.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Lib.Audio/Factories/IControllableFactory.cs b/Lib.Audio/Factories/IControllableFactory.cs index bc07f70..4d805d0 100644 --- a/Lib.Audio/Factories/IControllableFactory.cs +++ b/Lib.Audio/Factories/IControllableFactory.cs @@ -2,6 +2,7 @@ // Created: 2021-04-08 // Copyright(c) 2021 SimonG. All Rights Reserved. +using System.Collections.Generic; using Lib.Audio.Interfaces; using NAudio.CoreAudioApi; @@ -9,6 +10,7 @@ namespace Lib.Audio.Factories { public interface IControllableFactory { - IControllable Create(AudioSessionControl audioSessionControl, string name); + IControllable Create(List audioSessionControls, string name); + IMasterControllable Create(AudioEndpointVolume audioEndpointVolume, string name); } } \ No newline at end of file