RuneHive-Game
Loading...
Searching...
No Matches
FollowWaypoint.java
Go to the documentation of this file.
1package com.runehive.game.world.entity.mob.movement.waypoint;
2
3import com.runehive.game.world.entity.mob.Mob;
4
5public class FollowWaypoint extends Waypoint {
6
8 super(mob, target);
9 }
10
11 @Override
12 public void onDestination() {
13 mob.movement.reset();
14 }
15
16}
Handles the mob class.
Definition Mob.java:66