Skip to content

Commit

Permalink
add setter for type
Browse files Browse the repository at this point in the history
  • Loading branch information
frengels committed Jan 22, 2018
1 parent cdc681b commit 6794d78
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ public interface Widget

int getType();

void setType(int type);

int getContentType();

void setContentType(int contentType);
Expand Down
4 changes: 4 additions & 0 deletions runescape-api/src/main/java/net/runelite/rs/api/RSWidget.java
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,10 @@ public interface RSWidget extends Widget
@Override
int getType();

@Import("type")
@Override
void setType(int type);

@Import("scrollX")
int getScrollX();

Expand Down

0 comments on commit 6794d78

Please sign in to comment.