Use player indices to iterate local players

This commit is contained in:
Adam
2017-10-17 11:59:58 -04:00
parent 10a494a2b7
commit 6792f2570a
6 changed files with 30 additions and 25 deletions

View File

@@ -128,9 +128,14 @@ public interface RSClient extends RSGameEngine, Client
@Import("collisionMaps")
RSCollisionData[] getCollisionMaps();
@Import("playerIndexesCount")
int getPlayerIndexesCount();
@Import("playerIndices")
int[] getPlayerIndices();
@Import("cachedPlayers")
@Override
RSPlayer[] getCachedPlayers();
@Import("groundItemDeque")