Merge remote-tracking branch 'runelite/master'

This commit is contained in:
Owain van Brakel
2022-01-28 19:26:38 +01:00
6 changed files with 126 additions and 3 deletions

View File

@@ -56,4 +56,11 @@ public interface Animation
* whether this Animation frame has any alpha/transparency animation.
*/
boolean isShowing();
/**
* Get the id for this animation
* @see AnimationID
* @return
*/
int getId();
}

View File

@@ -2,6 +2,12 @@ package net.runelite.api;
public interface DynamicObject extends Renderable
{
/**
* Get the animation applied to the object
* @return
*/
Animation getAnimation();
int getAnimationID();
/**