18 lines
371 B
Java
18 lines
371 B
Java
package org.bukkit.entity;
|
|
|
|
import org.bukkit.inventory.Inventory;
|
|
|
|
/**
|
|
* 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();
|
|
}
|