fix: import correct field

This commit is contained in:
Joshua Filby
2018-05-06 22:40:19 -05:00
parent 1f17de5d18
commit 4a4866df9f

View File

@@ -28,9 +28,9 @@ import net.runelite.mapping.Import;
public interface RSScriptEvent public interface RSScriptEvent
{ {
@Import("objs") @Import("params")
Object[] getArguments(); Object[] getArguments();
@Import("objs") @Import("params")
void setArguments(Object[] args); void setArguments(Object[] args);
} }