Implemented js5port, worldport, parent/sub cache paths
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
package net.runelite.rs.api;
|
||||
|
||||
public interface RSFrameLoader {}
|
||||
@@ -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();
|
||||
}
|
||||
@@ -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);
|
||||
|
||||
}
|
||||
@@ -16,4 +16,10 @@ public interface RSMouseRecorder extends MouseRecorder
|
||||
|
||||
@Import("index")
|
||||
int getIndex();
|
||||
}
|
||||
|
||||
@Import("worldPort")
|
||||
int getWorldPort();
|
||||
|
||||
@Import("worldPort")
|
||||
void setWorldPort();
|
||||
}
|
||||
@@ -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);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user