Files
Bukkit/src/main/java/org/bukkit/StorageMinecart.java
Erik Broes 9498644672 Updated inventories to a has-a relationship.
Added PlayerInventory interface with playeronly methods.
Add equals to ItemStack.
2011-01-09 18:29:48 +01:00

16 lines
322 B
Java

package org.bukkit;
/**
* Represents a storage minecart.
*
* @author sk89q
*/
public interface StorageMinecart extends Minecart {
/**
* Return the inventory object for this StorageMinecart.
*
* @return The inventory for this Minecart
*/
public Inventory getInventory();
}