api implementation

This commit is contained in:
ThatGamerBlue
2020-07-23 15:28:22 +01:00
parent 7b261b0cc7
commit ce45b90011
2 changed files with 6 additions and 9 deletions

View File

@@ -760,15 +760,6 @@ public interface Widget
Object[] getOnInvTransmit();
Object[] getOnOp();
/**
* Gets the script and arguments to be ran when one of the listened for inventories changes.
*
* @return
*/
Object[] getOnInvTransmitListener();
/**
* Returns the archive id of the font used
*

View File

@@ -148,4 +148,10 @@ public abstract class RSItemContainerMixin implements RSItemContainer
}
}
}
@Inject
public int size()
{
return getItemIds().length;
}
}