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