summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/api/IWorth.java
blob: 4add987712f287541a2205c623377ef43f4380fe (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.earth2me.essentials.api;

import org.bukkit.inventory.ItemStack;


public interface IWorth extends IReload
{
	double getPrice(ItemStack itemStack);

	void setPrice(ItemStack itemStack, double price);
}