/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package org.pepsoft.minecraft; import java.util.List; /** * * @author pepijn */ public interface ItemContainer { List<InventoryItem> getItems(); }