Universe.BotManager.AStar.AStar.PrintNodeList C# (CSharp) Method

PrintNodeList() private method

Prints all the nodes in a list
private PrintNodeList ( object aNodeList ) : void
aNodeList object List to print
return void
        void PrintNodeList(object aNodeList)
        {
            Console.WriteLine("Node list:");
            foreach (AStarNode n in (aNodeList as IEnumerable))
            {
                //n.PrintNodeInfo();
            }
            Console.WriteLine("=====");
        }