equivalent-exchange-3/src/main/java/com/pahimar/ee3/item/ITransmutationStone.java
2023-01-03 17:47:36 +01:00

21 lines
556 B
Java

package com.pahimar.ee3.item;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
public interface ITransmutationStone {
void openPortableCraftingGUI(final EntityPlayer p0, final ItemStack p1);
void openPortableTransmutationGUI(final EntityPlayer p0, final ItemStack p1);
void transmuteBlock(
final ItemStack p0,
final EntityPlayer p1,
final World p2,
final int p3,
final int p4,
final int p5,
final int p6
);
}