- adapt to changes

master
Simon G 5 years ago
parent 112b4b68eb
commit 9b45ca0f1d
  1. 4
      Lib.Audio/Factories/IControllableFactory.cs

@ -2,6 +2,7 @@
// Created: 2021-04-08 // Created: 2021-04-08
// Copyright(c) 2021 SimonG. All Rights Reserved. // Copyright(c) 2021 SimonG. All Rights Reserved.
using System.Collections.Generic;
using Lib.Audio.Interfaces; using Lib.Audio.Interfaces;
using NAudio.CoreAudioApi; using NAudio.CoreAudioApi;
@ -9,6 +10,7 @@ namespace Lib.Audio.Factories
{ {
public interface IControllableFactory public interface IControllableFactory
{ {
IControllable Create(AudioSessionControl audioSessionControl, string name); IControllable Create(List<AudioSessionControl> audioSessionControls, string name);
IMasterControllable Create(AudioEndpointVolume audioEndpointVolume, string name);
} }
} }
Loading…
Cancel
Save