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

import net.ess3.api.server.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;
}