Implemented js5port, worldport, parent/sub cache paths

This commit is contained in:
Jonatino
2021-03-21 16:13:51 -04:00
parent 050f399cdf
commit bec41007a9
20 changed files with 106 additions and 53 deletions

View File

@@ -0,0 +1,3 @@
package net.runelite.rs.api;
public interface RSFrameLoader {}

View File

@@ -0,0 +1,12 @@
package net.runelite.rs.api;
import net.runelite.mapping.Import;
public interface RSFrameProvider {
@Import("js5Port")
int getJs5Port();
@Import("js5Port")
void setJs5Port();
}

View File

@@ -0,0 +1,13 @@
package net.runelite.rs.api;
import net.runelite.mapping.Import;
public interface RSMinimapRenderer {
@Import("cacheParentPaths")
String[] getCacheParentPaths();
@Import("cacheParentPaths")
void setCacheParentPaths(String[] cacheParentPaths);
}

View File

@@ -16,4 +16,10 @@ public interface RSMouseRecorder extends MouseRecorder
@Import("index")
int getIndex();
}
@Import("worldPort")
int getWorldPort();
@Import("worldPort")
void setWorldPort();
}

View File

@@ -1,3 +1,13 @@
package net.runelite.rs.api;
public interface RSTimer {}
import net.runelite.mapping.Import;
public interface RSTimer {
@Import("cacheSubPaths")
String[] getCacheSubPaths();
@Import("cacheSubPaths")
void setCacheSubPaths(String[] cacheSubPaths);
}