runelite-api: add getActions, imposterIds, and imposter to ObjectComposition
This commit is contained in:
@@ -28,7 +28,13 @@ public interface ObjectComposition
|
|||||||
{
|
{
|
||||||
String getName();
|
String getName();
|
||||||
|
|
||||||
|
String[] getActions();
|
||||||
|
|
||||||
int getMapSceneId();
|
int getMapSceneId();
|
||||||
|
|
||||||
int getMapIconId();
|
int getMapIconId();
|
||||||
|
|
||||||
|
int[] getImpostorIds();
|
||||||
|
|
||||||
|
ObjectComposition getImpostor();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -34,6 +34,7 @@ public interface RSObjectComposition extends ObjectComposition
|
|||||||
String getName();
|
String getName();
|
||||||
|
|
||||||
@Import("actions")
|
@Import("actions")
|
||||||
|
@Override
|
||||||
String[] getActions();
|
String[] getActions();
|
||||||
|
|
||||||
@Import("mapSceneId")
|
@Import("mapSceneId")
|
||||||
@@ -43,4 +44,12 @@ public interface RSObjectComposition extends ObjectComposition
|
|||||||
@Import("mapIconId")
|
@Import("mapIconId")
|
||||||
@Override
|
@Override
|
||||||
int getMapIconId();
|
int getMapIconId();
|
||||||
|
|
||||||
|
@Import("impostorIds")
|
||||||
|
@Override
|
||||||
|
int[] getImpostorIds();
|
||||||
|
|
||||||
|
@Import("getImpostor")
|
||||||
|
@Override
|
||||||
|
RSObjectComposition getImpostor();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user