mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-01 22:04:52 +00:00
Updated Interface to be more genericized
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user