001 package org.bukkit.inventory;
002
003 public interface InventoryHolder {
004
005 /**
006 * Get the object's inventory.
007 *
008 * @return The inventory.
009 */
010 public Inventory getInventory();
011 }