All entity stuff in org.bukkit moved to org.bukkit.entity

This commit is contained in:
Dinnerbone
2011-01-15 21:20:59 +00:00
parent 8391ecaae8
commit b923ccf636
46 changed files with 282 additions and 257 deletions

View File

@@ -0,0 +1,17 @@
package org.bukkit.entity;
import org.bukkit.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();
}