Remove static imports

This commit is contained in:
Jonatino
2021-03-25 18:19:08 -04:00
parent 8b40493e54
commit 01c80e93a3
5 changed files with 5 additions and 37 deletions

View File

@@ -13,6 +13,4 @@ public interface DynamicObject extends Renderable
* Get the number of cycles that have elapsed in the whole animation. * Get the number of cycles that have elapsed in the whole animation.
*/ */
int getAnimCycleCount(); int getAnimCycleCount();
}
int getCurrentPort();
}

View File

@@ -20,10 +20,4 @@ public interface RSDynamicObject extends RSRenderable, DynamicObject, Renderable
@Import("sequenceDefinition") @Import("sequenceDefinition")
RSSequenceDefinition getSequenceDefinition(); RSSequenceDefinition getSequenceDefinition();
}
@Import("currentPort")
int getCurrentPort();
@Import("currentPort")
void setCurrentPort(int currentPort);
}

View File

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

View File

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

View File

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