summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/inventory/InventoryHolder.java
blob: 9c06a3d7919e32b690a3b7530627a1a23071d39f (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.bukkit.inventory;

public interface InventoryHolder {

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