add getVarbitCount and warn instead of throw when varb doesnt exist

This commit is contained in:
Lucwousin
2020-06-29 02:08:26 +02:00
parent 934fad63b5
commit 2d9c26387a
4 changed files with 22 additions and 1 deletions

View File

@@ -7,4 +7,7 @@ public interface RSAbstractArchive extends IndexDataBase
{
@Import("takeFile")
byte[] getConfigData(int archiveId, int fileId);
@Import("getGroupFileCount")
int getGroupFileCount(int group);
}

View File

@@ -457,6 +457,9 @@ public interface RSClient extends RSGameShell, Client
@Import("SpriteBuffer_spritePalette")
void setIndexedSpritePalette(int[] indexedSpritePalette);
@Import("archive2")
RSArchive getConfigArchive();
@Import("archive6")
RSArchive getMusicTracks();