コード例 #1
0
ファイル: Core.cs プロジェクト: k0dep/Matter
 public void ConnectPort(ICore other, int selfEdge, int otherEdge)
 {
     InPorts.Connect(selfEdge, other.OutPorts, otherEdge);
     OutPorts.Connect(selfEdge, other.InPorts, otherEdge);
 }