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
parent a74753d4a3
commit 641fa2101d

View File

@@ -52,8 +52,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>