DynamicObjectAnimationChanged

This commit is contained in:
Owain van Brakel
2019-07-04 04:32:29 +02:00
parent 2d3af49624
commit be301d14fa
2 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package net.runelite.api.events;
import lombok.Data;
@Data
public class DynamicObjectAnimationChanged
{
/**
* The object that has entered a new animation.
*/
private int object;
/**
* The id of the animation animation.
*/
private int animation;
}