Esempio n. 1
0
        public void TestDisplays()
        {
            string     file = "..\\..\\mazeGenerator.txt";
            Labyrinthe maze = new Labyrinthe();

            char[,] matchar = TestInitialisation(maze, file);
            Cell[,] cells   = maze.CharToCell(matchar);
            //maze.DisplayList(liststring);
            //maze.Displaychar(matchar);
            maze.Display(cells);
        }