use of net.runelite.api.events.AnimationChanged in project runelite by runelite.
the class RSActorMixin method animationChanged.
@FieldHook("animation")
@Inject
public void animationChanged(int idx) {
AnimationChanged animationChange = new AnimationChanged();
animationChange.setActor(this);
eventBus.post(animationChange);
}
Aggregations