Newer
Older
ultramine_bukkit / src / main / java / org / bukkit / block / Chest.java
@vlad20012 vlad20012 on 24 Feb 2017 378 bytes initial
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();
}