Add int and string script stack to api

This commit is contained in:
Adam
2018-01-27 13:01:56 -05:00
parent 41f005827c
commit 4bfa22448d
2 changed files with 36 additions and 0 deletions

View File

@@ -255,4 +255,16 @@ public interface Client extends GameEngine
* @return
*/
ItemContainer getItemContainer(InventoryID inventory);
int getIntStackSize();
void setIntStackSize(int stackSize);
int[] getIntStack();
int getStringStackSize();
void setStringStackSize(int stackSize);
String[] getStringStack();
}