Updated Interface to be more genericized

This commit is contained in:
Trevor Payne
2020-10-21 16:30:48 -05:00
parent 1484c26434
commit a9524bcc33
3 changed files with 448 additions and 401 deletions

View File

@@ -1,9 +1,17 @@
namespace PepperDash.Essentials.Core
using System.Collections.Generic;
namespace PepperDash.Essentials.Core
{
public interface IHasDspPresets
{
List<IDspPreset> Presets { get; }
void RecallPreset(IDspPreset preset);
}
public interface IDspPreset
{
void RunPreset(string name);
void RunPreset(int id);
string Name { get; }
}
}