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")
int getAnimation();
@Import("hitSplats")
int[] getHitSplats();
}

View File

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

View File

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

View File

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

View File

@@ -13,7 +13,7 @@ public interface NPCComposition
@Import("actions")
String[] getActions();
@Import("clickable")
@Import("isClickable")
boolean isClickable();
@Import("isMinimapVisible")

View File

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

View File

@@ -58,7 +58,7 @@ public interface Widget
@Import("width")
int getWidth();
@Import("heigth")
@Import("height")
int getHeight();
@Import("isHidden")

View File

@@ -4,8 +4,8 @@ import net.runelite.mapping.Import;
public interface XClanMember
{
@Import("name")
String getName();
@Import("username")
String getUsernameName();
@Import("world")
int getWorld();