mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-31 05:14:51 +00:00
13 lines
358 B
C#
13 lines
358 B
C#
using System.Collections.Generic;
|
|
|
|
namespace PepperDash.Essentials.Core.Routing
|
|
{
|
|
public interface IMatrixRouting
|
|
{
|
|
Dictionary<string, IRoutingInputSlot> InputSlots { get; }
|
|
Dictionary<string, IRoutingOutputSlot> OutputSlots { get; }
|
|
|
|
void Route(string inputSlotKey, string outputSlotKey, eRoutingSignalType type);
|
|
}
|
|
}
|