Exemplo n.º 1
0
        static public Path QuickPath(TPassible Passible, int width, int height, int startx, int starty, int endx, int endy)
        {
            var a = new Dijkstra(Passible, width, height, startx, starty, endx, endy);

            return(a.Start());
        }
Exemplo n.º 2
0
        static public Path QuickPath(bool[,] BlockMap, int startx, int starty, int endx, int endy)
        {
            var a = new Dijkstra(BlockMap, startx, starty, endx, endy);

            return(a.Start());
        }