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