HPASharp.ConcreteMap.PrintFormatted C# (CSharp) Method

PrintFormatted() private method

private PrintFormatted ( List chars ) : void
chars List
return void
        private void PrintFormatted(List<char> chars)
        {
            for (var y = 0; y < Height; ++y)
            {
                for (var x = 0; x < Width; ++x)
                {
                    var nodeId = this.GetNodeIdFromPos(x, y);
                    Console.Write(chars[nodeId]);
                }

                Console.WriteLine();
            }
        }

Same methods

ConcreteMap::PrintFormatted ( ) : void
ConcreteMap::PrintFormatted ( List path ) : void