Esempio n. 1
0
File: Core.cs Progetto: k0dep/Matter
 public void ConnectPort(ICore other, int selfEdge, int otherEdge)
 {
     InPorts.Connect(selfEdge, other.OutPorts, otherEdge);
     OutPorts.Connect(selfEdge, other.InPorts, otherEdge);
 }