This runs ok through import test
This commit is contained in:
@@ -33,4 +33,7 @@ public interface Actor extends Renderable
|
||||
|
||||
@Import("animation")
|
||||
int getAnimation();
|
||||
|
||||
@Import("hitSplats")
|
||||
int[] getHitSplats();
|
||||
}
|
||||
|
||||
@@ -64,7 +64,7 @@ public interface Client extends GameEngine
|
||||
@Import("realSkillLevels")
|
||||
int[] getRealSkillLevels();
|
||||
|
||||
@Import("skillExperience")
|
||||
@Import("skillExperiences")
|
||||
int[] getSkillExperiences();
|
||||
|
||||
@Import("gameState")
|
||||
@@ -82,7 +82,7 @@ public interface Client extends GameEngine
|
||||
@Import("cachedNPCs")
|
||||
NPC[] getCachedNPCs();
|
||||
|
||||
@Import("collionMaps")
|
||||
@Import("collisionMaps")
|
||||
CollisionData[] getCollisionMaps();
|
||||
|
||||
@Import("cachedPlayers")
|
||||
@@ -94,12 +94,24 @@ public interface Client extends GameEngine
|
||||
@Import("username")
|
||||
String getUsername();
|
||||
|
||||
@Import("menuACtions")
|
||||
@Import("menuActions")
|
||||
String[] getMenuActions();
|
||||
|
||||
@Import("menuTargets")
|
||||
String[] getMenuTargets();
|
||||
|
||||
@Import("menuOptions")
|
||||
String[] getMenuOptions();
|
||||
|
||||
@Import("menuOptionCount")
|
||||
int getMenuOptionCount();
|
||||
|
||||
@Import("menuTypes")
|
||||
int[] getMenuTypes();
|
||||
|
||||
@Import("menuIdentifiers")
|
||||
int[] getMenuIdentifiers();
|
||||
|
||||
@Import("friends")
|
||||
Friend[] getFriends();
|
||||
|
||||
@@ -135,7 +147,7 @@ public interface Client extends GameEngine
|
||||
@Import("validInterfaces")
|
||||
boolean[] getValidInterfaces();
|
||||
|
||||
@Import("resized")
|
||||
@Import("isResized")
|
||||
boolean isResized();
|
||||
|
||||
@Import("widgetPositionX")
|
||||
@@ -158,4 +170,16 @@ public interface Client extends GameEngine
|
||||
|
||||
@Import("clanMembers")
|
||||
XClanMember[] getClanMembers();
|
||||
|
||||
@Import("isMenuOpen")
|
||||
boolean isMenuOpen();
|
||||
|
||||
@Import("packetOpcode")
|
||||
int getPacketOpcode();
|
||||
|
||||
@Import("gameCycle")
|
||||
int getGameCycle();
|
||||
|
||||
@Import("packetHandler")
|
||||
void packetHandler();
|
||||
}
|
||||
|
||||
@@ -7,6 +7,6 @@ public interface Ignore
|
||||
@Import("name")
|
||||
String getName();
|
||||
|
||||
@Import("prevousName")
|
||||
@Import("previousName")
|
||||
String getPreviousName();
|
||||
}
|
||||
|
||||
@@ -9,4 +9,7 @@ public interface ItemComposition
|
||||
|
||||
@Import("isMembers")
|
||||
boolean isMembers();
|
||||
|
||||
@Import("maleModel")
|
||||
int getMaleModel();
|
||||
}
|
||||
|
||||
@@ -13,7 +13,7 @@ public interface NPCComposition
|
||||
@Import("actions")
|
||||
String[] getActions();
|
||||
|
||||
@Import("clickable")
|
||||
@Import("isClickable")
|
||||
boolean isClickable();
|
||||
|
||||
@Import("isMinimapVisible")
|
||||
|
||||
@@ -9,4 +9,10 @@ public interface PlayerComposition
|
||||
|
||||
@Import("equipment")
|
||||
int[] getEquipment();
|
||||
|
||||
@Import("bodyPartColours")
|
||||
int[] getBodyPartColours();
|
||||
|
||||
@Import("bodyParts")
|
||||
int[] getBodyParts();
|
||||
}
|
||||
|
||||
@@ -58,7 +58,7 @@ public interface Widget
|
||||
@Import("width")
|
||||
int getWidth();
|
||||
|
||||
@Import("heigth")
|
||||
@Import("height")
|
||||
int getHeight();
|
||||
|
||||
@Import("isHidden")
|
||||
|
||||
@@ -4,8 +4,8 @@ import net.runelite.mapping.Import;
|
||||
|
||||
public interface XClanMember
|
||||
{
|
||||
@Import("name")
|
||||
String getName();
|
||||
@Import("username")
|
||||
String getUsernameName();
|
||||
|
||||
@Import("world")
|
||||
int getWorld();
|
||||
|
||||
Reference in New Issue
Block a user