示例#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);
 }