using RichCreator.Utility.Structs; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RichCreator.PathFinding { //表示一条边,从Start到End的权值为多少 internal class Edge { public ZTPoint Start { get; set; } public ZTPoint End { get; set; } public double Weight { get; set; } } }