mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
feat: add IDspPresetsDirectRecall interface to define preset recall functionality
This commit is contained in:
parent
6852f47ce2
commit
f971a3adff
2 changed files with 39 additions and 0 deletions
|
|
@ -0,0 +1,18 @@
|
|||
using PepperDash.Core;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace PepperDash.Essentials.Core;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Defines the contract for IDspPresetsDirectRecall
|
||||
/// </summary>
|
||||
public interface IDspPresetsDirectRecall : IKeyed
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Recalls the preset by name
|
||||
/// </summary>
|
||||
/// <param name="name"></param>
|
||||
void RunPreset(string name);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue