예제 #1
0
파일: Minion.cs 프로젝트: cedwards145/ld33
 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;
        }