RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
FollowWaypoint.java
1
package
com.osroyale.game.world.entity.mob.movement.waypoint;
2
3
import
com.osroyale.game.world.entity.mob.Mob;
4
22
23
public
class
FollowWaypoint
extends
Waypoint {
24
25
public
FollowWaypoint(
Mob
mob,
Mob
target) {
26
super(mob, target);
27
}
28
29
@Override
30
public
void
onDestination() {
31
mob.movement.reset();
32
}
33
34
}
com.osroyale.game.world.entity.mob.Mob
Definition
Mob.java:103