mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 12:06:58 +00:00
Fix IBasicVolumeControls
fix: revert a change that split the interface but could break backwards compatibility #955
This commit is contained in:
parent
be5158d29e
commit
4c9a470885
1 changed files with 4 additions and 1 deletions
|
|
@ -9,8 +9,11 @@ namespace PepperDash.Essentials.Core
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Defines minimal volume and mute control methods
|
/// Defines minimal volume and mute control methods
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public interface IBasicVolumeControls : IHasVolumeControl, IHasMuteControl
|
public interface IBasicVolumeControls
|
||||||
{
|
{
|
||||||
|
void VolumeUp(bool pressRelease);
|
||||||
|
void VolumeDown(bool pressRelease);
|
||||||
|
void MuteToggle();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue