added licence headers

This commit is contained in:
Noodleeater
2021-01-30 20:37:02 +00:00
parent 7b0678d0a1
commit e678c83ff9
2 changed files with 66 additions and 1 deletions

View File

@@ -1,9 +1,10 @@
package net.runelite.rs.api;
import net.runelite.api.AbstractArchive;
import net.runelite.api.IndexDataBase;
import net.runelite.mapping.Import;
public interface RSAbstractArchive extends IndexDataBase
public interface RSAbstractArchive extends IndexDataBase, AbstractArchive
{
@Import("takeFile")
byte[] getConfigData(int archiveId, int fileId);
@@ -11,4 +12,20 @@ public interface RSAbstractArchive extends IndexDataBase
@Import("getGroupFileIds")
@Override
int[] getFileIds(int group);
@Import("groupCount")
int getGroupCount();
@Import("fileIds")
int[][] getFileIds();
@Import("getFile")
byte[] getFile(int var1, int var2);
@Import("getGroupFileCount")
int getGroupFileCount(int var1);
@Import("fileCounts")
int[] getFileCounts();
}