001 package org.bukkit.entity.minecart;
002
003 import org.bukkit.entity.Minecart;
004 import org.bukkit.inventory.InventoryHolder;
005
006 /**
007 * Represents a minecart with a chest. These types of {@link Minecart
008 * minecarts} have their own inventory that can be accessed using methods
009 * from the {@link InventoryHolder} interface.
010 */
011 public interface StorageMinecart extends Minecart, InventoryHolder {
012 }