public virtual void FlowInFrom(FlowTronic other, Node which)
 {
     other.FlowOutTo(this, which.Type);
 }
 /// <summary>
 /// Wires this tronic's FlowIn node to one of the other tronic's FlowOut nodes
 /// </summary>
 /// <param name="other">The other tronic that's being wired</param>
 /// <param name="which">Which FlowOut node to use</param>
 public virtual void FlowInFrom(FlowTronic other, NodeType which = NodeType.FlowOutA)
 {
     other.FlowOutTo(this, which);
 }