2012-12-17 21:21:53 +01:00
|
|
|
package com.pahimar.ee3.item;
|
2012-09-24 21:58:15 +02:00
|
|
|
|
2012-12-13 16:01:41 +01:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2012-11-30 16:47:18 +01:00
|
|
|
|
2012-10-27 23:41:02 +02:00
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
*
|
|
|
|
*/
|
2012-09-24 21:58:15 +02:00
|
|
|
public interface ITransmutationStone {
|
|
|
|
|
2012-11-30 16:47:18 +01:00
|
|
|
public abstract void openPortableCrafting(EntityPlayer thePlayer);
|
2012-09-24 21:58:15 +02:00
|
|
|
|
|
|
|
}
|