summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/api/IItemDb.java
blob: 8a20c85a10e1e84eea26222da4c1eb9c71363352 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package net.ess3.api;

import org.bukkit.inventory.ItemStack;


public interface IItemDb extends IReload
{
	ItemStack get(final String name, final IUser user) throws Exception;

	ItemStack get(final String name, final int quantity) throws Exception;

	ItemStack get(final String name) throws Exception;
}