Files
Bukkit/src/main/java/org/bukkit/block/Chest.java
2013-08-28 01:44:09 -05:00

18 lines
400 B
Java

package org.bukkit.block;
import org.bukkit.inventory.Inventory;
/**
* Represents a chest.
*/
public interface Chest extends BlockState, ContainerBlock {
/**
* Returns the chest's inventory. If this is a double chest, it returns just
* the portion of the inventory linked to this half of the chest.
*
* @return The inventory.
*/
Inventory getBlockInventory();
}