summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/inventory/EnchantingInventory.java
blob: 40e8594646e5733075fd78d356a4b66974ef1113 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.bukkit.inventory;

public interface EnchantingInventory extends Inventory {
    /**
     * Set the item being enchanted.
     * @param item The new item
     */
    void setItem(ItemStack item);
    /**
     * Get the item being enchanted.
     * @return The current item.
     */
    ItemStack getItem();
}