rle.core.board.item
Interface ItemSack

All Superinterfaces:
ItemContainer, PlugIn

public interface ItemSack
extends ItemContainer

An ItemSack is a mutable ItemContainer to which items can be added and removed without specification of any additional attributes.


Method Summary
 void add(Item item)
          Attempts to add item.
 void remove(Item item)
          Removes item.
 
Methods inherited from interface rle.core.board.item.ItemContainer
addItemContainerListener, isEmpty, items, removeItemContainerListener
 
Methods inherited from interface rle.core.vm.PlugIn
config, getContext, paramMap, setConfig, setParameters
 

Method Detail

add

void add(Item item)
Attempts to add item. If canAdd() is false, will throw an IllegalArgumentException.


remove

void remove(Item item)
Removes item.