/// <summary> /// Draws the output port to the GUI layer /// </summary> public void DrawIO() { InputPort.Draw(); if (OutputPorts != null && OutputPorts.Length > 0) { for (int i = 0; i < OutputPorts.Length; i++) { OutputPorts[i].Draw(); } } }