summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/api/IItemDb.java
blob: 678b5c7b005388a627e94431a5c99448e0ed4aff (plain)
1
2
3
4
5
6
7
8
9
10
11
12

package com.earth2me.essentials.api;

import org.bukkit.inventory.ItemStack;


public interface IItemDb
{
	ItemStack get(final String name, final int quantity) throws Exception;

	ItemStack get(final String name) throws Exception;
}