示例#1
0
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
            Console.ReadKey();

            Maze maze = Maze.loadMazeFile("../../res/easyMaze.csv");

            PathFinderAStar solver = new PathFinderAStar();

            Path solution = solver.solve(maze);

            Console.WriteLine(maze.solutionDisplay(solution));



            Console.ReadKey();
        }