Remove static imports
This commit is contained in:
@@ -13,6 +13,4 @@ public interface DynamicObject extends Renderable
|
||||
* Get the number of cycles that have elapsed in the whole animation.
|
||||
*/
|
||||
int getAnimCycleCount();
|
||||
|
||||
int getCurrentPort();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,10 +20,4 @@ public interface RSDynamicObject extends RSRenderable, DynamicObject, Renderable
|
||||
|
||||
@Import("sequenceDefinition")
|
||||
RSSequenceDefinition getSequenceDefinition();
|
||||
|
||||
@Import("currentPort")
|
||||
int getCurrentPort();
|
||||
|
||||
@Import("currentPort")
|
||||
void setCurrentPort(int currentPort);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,12 +1,3 @@
|
||||
package net.runelite.rs.api;
|
||||
|
||||
import net.runelite.mapping.Import;
|
||||
|
||||
public interface RSFrameProvider
|
||||
{
|
||||
@Import("js5Port")
|
||||
int getJs5Port();
|
||||
|
||||
@Import("js5Port")
|
||||
void setJs5Port(int js5Port);
|
||||
}
|
||||
public interface RSFrameProvider {}
|
||||
@@ -16,10 +16,4 @@ public interface RSMouseRecorder extends MouseRecorder
|
||||
|
||||
@Import("index")
|
||||
int getIndex();
|
||||
|
||||
@Import("worldPort")
|
||||
int getWorldPort();
|
||||
|
||||
@Import("worldPort")
|
||||
void setWorldPort(int worldPort);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,12 +1,3 @@
|
||||
package net.runelite.rs.api;
|
||||
|
||||
import net.runelite.mapping.Import;
|
||||
|
||||
public interface RSTimer
|
||||
{
|
||||
@Import("cacheSubPaths")
|
||||
String[] getCacheSubPaths();
|
||||
|
||||
@Import("cacheSubPaths")
|
||||
void setCacheSubPaths(String[] cacheSubPaths);
|
||||
}
|
||||
public interface RSTimer {}
|
||||
|
||||
Reference in New Issue
Block a user