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-12-19 19:09:56 +01:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.world.World;
|
2012-11-30 16:47:18 +01:00
|
|
|
|
2012-10-27 23:41:02 +02:00
|
|
|
/**
|
|
|
|
* ITransmutationStone
|
|
|
|
*
|
2012-12-19 19:09:56 +01:00
|
|
|
* Transmutation Stone interface, for use amongst all different kinds of
|
|
|
|
* transmutation stones
|
2012-10-27 23:41:02 +02:00
|
|
|
*
|
|
|
|
* @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-12-19 19:09:56 +01:00
|
|
|
public abstract void openPortableCrafting(EntityPlayer thePlayer);
|
|
|
|
|
2012-12-31 04:03:12 +01:00
|
|
|
public abstract void transmuteBlock(ItemStack itemStack, EntityPlayer player, World world, int x, int y, int z, int sideHit);
|
2012-12-19 19:09:56 +01:00
|
|
|
|
2012-09-24 21:58:15 +02:00
|
|
|
}
|