Skip to content

Commit

Permalink
add setter for spriteId
Browse files Browse the repository at this point in the history
  • Loading branch information
frengels committed Jan 22, 2018
1 parent defe1d3 commit 80172b1
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 @@ -70,6 +70,8 @@ public interface Widget

int getSpriteId();

void setSpriteId(int spriteId);

boolean isHidden();

void setHidden(boolean hidden);
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 @@ -142,6 +142,10 @@ public interface RSWidget extends Widget
@Override
int getSpriteId();

@Import("spriteId")
@Override
void setSpriteId(int spriteId);

@Import("borderThickness")
int getBorderThickness();

Expand Down

0 comments on commit 80172b1

Please sign in to comment.