Merge pull request #917 from Toocanzs/opponent-info

Continue to update opponent info while on screen
This commit is contained in:
Adam
2018-03-10 10:21:42 -05:00
committed by GitHub
7 changed files with 69 additions and 0 deletions

View File

@@ -39,6 +39,8 @@ public interface Client extends GameEngine
List<NPC> getNpcs();
NPC[] getCachedNPCs();
int getBoostedSkillLevel(Skill skill);
int getRealSkillLevel(Skill skill);

View File

@@ -34,4 +34,5 @@ public interface NPC extends Actor
@Override
int getCombatLevel();
int getIndex();
}