Exemple #1
0
        internal Node GetNextNode(ConnectionLine invoker, PathFinder path)
        {
            if (invoker == InputLine)
            {
                return(OutputLine.GetNextNode(this, path));
            }
            if (invoker == OutputLine)
            {
                return(InputLine.GetNextNode(this, path));
            }

            return(null);
        }