Ejemplo n.º 1
0
Archivo: Core.cs Proyecto: k0dep/Matter
 public void ConnectPort(ICore other, int selfEdge, int otherEdge)
 {
     InPorts.Connect(selfEdge, other.OutPorts, otherEdge);
     OutPorts.Connect(selfEdge, other.InPorts, otherEdge);
 }