예제 #1
0
파일: Path.cs 프로젝트: iwaitu/babbot
 public void AddLast(Path l)
 {
     locations.AddRange(l.locations);
 }
예제 #2
0
파일: Moving.cs 프로젝트: icaca/boogiebot
 public MoveAlonger(PPather pather, Path path)
 {
     this.Me = BoogieCore.Player;
     this.path = path;
     this.world = pather.world;
     mover = PPather.mover;
     sd = new StuckDetecter(pather, 1, 2);
     prev = null;
     current = path.GetFirst();
     next = path.GetSecond();
 }
예제 #3
0
파일: Path.cs 프로젝트: iwaitu/babbot
 public void AddFirst(Path l)
 {
     locations.InsertRange(0, l.locations);
 }