Expose isStackable on ItemComposition objects

This commit is contained in:
SomeoneWithAnInternetConnection
2018-02-21 14:30:53 -05:00
parent 9e44e00248
commit 9b50f16339
3 changed files with 57 additions and 0 deletions

View File

@@ -58,6 +58,15 @@ public interface RSItemComposition extends ItemComposition
@Override
boolean isMembers();
/**
* You probably want {@link #isStackable}
* <p>
* This is the <b>{@code int}</b> that client code uses internally to represent this true/false value. It appears to only ever be set to 1 or 0
* @return 0 when this type of item isn't stackable, 1 otherwise
*/
@Import("isStackable")
int getIsStackable();
@Import("maleModel")
int getMaleModel();
}