package org.bukkit.inventory;

public interface InventoryHolder {

    /**
     * Get the object's inventory.
     *
     * @return The inventory.
     */
    public Inventory getInventory();
}
