Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
at develop 18 lines 287 B view raw
1package org.bukkit.block; 2 3import org.bukkit.inventory.Inventory; 4 5/** 6 * Indicates a block type that has inventory. 7 * 8 * @author sk89q 9 */ 10public interface ContainerBlock { 11 12 /** 13 * Get the block's inventory. 14 * 15 * @return 16 */ 17 public Inventory getInventory(); 18}