This runs ok through import test

This commit is contained in:
Adam
2016-03-12 13:33:48 -05:00
parent 4deec93ca3
commit 02f95546cc
8 changed files with 45 additions and 9 deletions

View File

@@ -33,4 +33,7 @@ public interface Actor extends Renderable
@Import("animation") @Import("animation")
int getAnimation(); int getAnimation();
@Import("hitSplats")
int[] getHitSplats();
} }

View File

@@ -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();
} }

View File

@@ -7,6 +7,6 @@ public interface Ignore
@Import("name") @Import("name")
String getName(); String getName();
@Import("prevousName") @Import("previousName")
String getPreviousName(); String getPreviousName();
} }

View File

@@ -9,4 +9,7 @@ public interface ItemComposition
@Import("isMembers") @Import("isMembers")
boolean isMembers(); boolean isMembers();
@Import("maleModel")
int getMaleModel();
} }

View File

@@ -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")

View File

@@ -9,4 +9,10 @@ public interface PlayerComposition
@Import("equipment") @Import("equipment")
int[] getEquipment(); int[] getEquipment();
@Import("bodyPartColours")
int[] getBodyPartColours();
@Import("bodyParts")
int[] getBodyParts();
} }

View File

@@ -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")

View File

@@ -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();