Added PlayerInventory interface with playeronly methods. Add equals to ItemStack. By: Erik Broes <erikbroes@grum.nl>
16 lines
322 B
Java
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();
|
|
}
|