示例#1
0
 public void setPath(Path newPath)
 {
     path = newPath;
 }
示例#2
0
文件: Map.cs 项目: cedwards145/ld33
 private void calculateMinionPath()
 {
     minionPath = findPath(spawnPoint, destinationPoint);
 }
示例#3
0
文件: Path.cs 项目: cedwards145/ld33
        public Path Clone()
        {
            Path clone = new Path(Nodes);

            return clone;
        }