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

            return clone;
        }