Example #1
0
 public AIPath(Npc npc, Game1 game, int[] path, int[] delays, Direction[] directions)
 {
     this.npc = npc;
     this.player = game.getPlayer();
     this.collisionManager = game.getInputManager().getCollisionManager();
     this.path = path;
     this.delays = delays;
     this.directions = directions;
 }