fix: Changes LevelControlLists to AudioControlPointLists and modified IHasDspPresets

This commit is contained in:
Neil Dorin
2024-05-21 16:49:13 -06:00
parent d8d2c5b340
commit 2e61d8d709
10 changed files with 130 additions and 53 deletions

View File

@@ -0,0 +1,12 @@
using PepperDash.Core;
using System.Collections.Generic;
namespace PepperDash.Essentials.Core
{
public interface IDspPresets
{
Dictionary<string, IKeyName> Presets { get; }
void RecallPreset(string key);
}
}