Fixed setters missing arguments

This commit is contained in:
Jonatino
2021-03-21 16:19:21 -04:00
parent bec41007a9
commit 3540fd83b2
3 changed files with 3 additions and 3 deletions

View File

@@ -25,5 +25,5 @@ public interface RSDynamicObject extends RSRenderable, DynamicObject, Renderable
int getCurrentPort();
@Import("currentPort")
void setCurrentPort();
void setCurrentPort(int currentPort);
}

View File

@@ -8,5 +8,5 @@ public interface RSFrameProvider {
int getJs5Port();
@Import("js5Port")
void setJs5Port();
void setJs5Port(int js5Port);
}

View File

@@ -21,5 +21,5 @@ public interface RSMouseRecorder extends MouseRecorder
int getWorldPort();
@Import("worldPort")
void setWorldPort();
void setWorldPort(int worldPort);
}