
package common;

/**
 * InventoryItem.java
 *
 * An item that can have information stored in an inventory system
 *
 * Created: Wed Apr  5 06:27:56 2000
 *
 * @author Jan Newmarch
 * @version 1.0
 */

public interface InventoryItem {

    /**
     * the material in the inventory
     */
    String getMaterial();

} // InventoryItem
