mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-31 05:14:51 +00:00
Routing methods will now take a source port and destination port. This should solve the issue where a device could have multiple input ports defined in tielines and allow Essentials routing to find a path correctly.
9 lines
232 B
C#
9 lines
232 B
C#
namespace PepperDash.Essentials.Core
|
|
{
|
|
/// <summary>
|
|
/// Defines an IRoutingOutputs devices as being a source - the start of the chain
|
|
/// </summary>
|
|
public interface IRoutingSource : IRoutingOutputs
|
|
{
|
|
}
|
|
} |