add getter for paddingX

This commit is contained in:
Dreyri
2018-01-21 02:34:13 +01:00
parent 9f8cc8e146
commit 685b0706f9
2 changed files with 3 additions and 0 deletions

View File

@@ -119,4 +119,6 @@ public interface Widget
int getOriginalY();
void setOriginalY(int originalY);
int getPaddingX();
}

View File

@@ -203,6 +203,7 @@ public interface RSWidget extends Widget
void setOriginalY(int originalY);
@Import("paddingX")
@Override
int getPaddingX();
@Import("paddingY")