Example #1
0
 public void setPath(Path newPath)
 {
     path = newPath;
 }
Example #2
0
 private void calculateMinionPath()
 {
     minionPath = findPath(spawnPoint, destinationPoint);
 }
Example #3
0
        public Path Clone()
        {
            Path clone = new Path(Nodes);

            return clone;
        }