o
asmrobot
2019-10-27 c4bd9d8c587bd1401f0fb2f60c34a4964d7afe20
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace RichCreator.Utility.PathFinding
{
    /// <summary>
    /// DNF路径查找
    /// </summary>
    public class DNFPathFinding
    {
        //凛冬
        private static readonly string[] Lingdong = new string[] {
            string.Empty,//0
            //1
            "{\"Width\":30,\"Height\":30,\"RowCount\":24,\"ColCount\":45,\"Vertexs\":[],\"Edges\":[],\"Positions\":[{\"X\":1095,\"Y\":324,\"Parameter\":4},{\"X\":607,\"Y\":321,\"Parameter\":5},{\"X\":118,\"Y\":322,\"Parameter\":6},{\"X\":662,\"Y\":168,\"Parameter\":8},{\"X\":659,\"Y\":20,\"Parameter\":9}]}",//1
            //2
            ""
 
 
        };
 
        //卡勒特
        private static readonly string[] Kalete = new string[] {
            string.Empty ,//0
        };
 
 
 
 
    }
}