mixins: simplify dynamic object and sequence definition mixins

This commit is contained in:
ThatGamerBlue
2020-11-08 13:27:40 +00:00
parent aab9df61ca
commit 38a37abd69
5 changed files with 13 additions and 15 deletions

View File

@@ -17,4 +17,7 @@ public interface RSDynamicObject extends RSEntity, DynamicObject, Entity
@Import("cycleStart")
int getAnimCycleCount();
@Import("sequenceDefinition")
RSSequenceDefinition getSequenceDefinition();
}

View File

@@ -2,7 +2,7 @@ package net.runelite.rs.api;
import net.runelite.mapping.Import;
public interface RSSequenceDefinition
public interface RSSequenceDefinition extends RSNode
{
// @Import("stretches")
// boolean getStretches();
@@ -23,7 +23,7 @@ public interface RSSequenceDefinition
int[] getFrameIDs();
@Import("frameLengths")
int[] getFrameLenths();
int[] getFrameLengths();
@Import("chatFrameIds")
int[] getChatFrameIds();