2018-02-15 18:49:01 -08:00
|
|
|
package WayofTime.bloodmagic.iface;
|
2016-05-04 19:25:42 -04:00
|
|
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An interface for items that have custom drainage behaviour when used in
|
|
|
|
* certain alchemy recipes.
|
|
|
|
*/
|
2017-08-15 21:30:48 -07:00
|
|
|
public interface ICustomAlchemyConsumable {
|
2016-05-04 19:25:42 -04:00
|
|
|
ItemStack drainUseOnAlchemyCraft(ItemStack stack);
|
|
|
|
}
|