Fixed setters missing arguments
This commit is contained in:
@@ -25,5 +25,5 @@ public interface RSDynamicObject extends RSRenderable, DynamicObject, Renderable
|
||||
int getCurrentPort();
|
||||
|
||||
@Import("currentPort")
|
||||
void setCurrentPort();
|
||||
void setCurrentPort(int currentPort);
|
||||
}
|
||||
@@ -8,5 +8,5 @@ public interface RSFrameProvider {
|
||||
int getJs5Port();
|
||||
|
||||
@Import("js5Port")
|
||||
void setJs5Port();
|
||||
void setJs5Port(int js5Port);
|
||||
}
|
||||
@@ -21,5 +21,5 @@ public interface RSMouseRecorder extends MouseRecorder
|
||||
int getWorldPort();
|
||||
|
||||
@Import("worldPort")
|
||||
void setWorldPort();
|
||||
void setWorldPort(int worldPort);
|
||||
}
|
||||
Reference in New Issue
Block a user