fix for IBasicVolumeWithFeedback

fix: for a change that split the interface but could break backwards compatibility #955
This commit is contained in:
jta
2022-06-13 13:01:04 -05:00
committed by Jaosn Alborough
parent 4c9a470885
commit 38c4a540a9

View File

@@ -55,8 +55,13 @@ namespace PepperDash.Essentials.Core
/// <summary>
/// Adds feedback and direct volume level set to IBasicVolumeControls
/// </summary>
public interface IBasicVolumeWithFeedback : IBasicVolumeControls, IHasVolumeControlWithFeedback, IHasMuteControlWithFeedback
public interface IBasicVolumeWithFeedback : IBasicVolumeControls
{
BoolFeedback MuteFeedback { get; }
void MuteOn();
void MuteOff();
void SetVolume(ushort level);
IntFeedback VolumeLevelFeedback { get; }
}
/// <summary>