equivalent-exchange-3/ee3_common/com/pahimar/ee3/item/ITransmutationStone.java

18 lines
430 B
Java

package com.pahimar.ee3.item;
import net.minecraft.entity.player.EntityPlayer;
/**
* ITransmutationStone
*
* Transmutation Stone interface, for use amongst all different kinds of transmutation stones
*
* @author pahimar
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
*
*/
public interface ITransmutationStone {
public abstract void openPortableCrafting(EntityPlayer thePlayer);
}