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

22 lines
556 B
Java
Raw Normal View History

package com.pahimar.ee3.item;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
2023-01-03 17:47:36 +01:00
public interface ITransmutationStone {
void openPortableCraftingGUI(final EntityPlayer p0, final ItemStack p1);
2023-01-03 17:47:36 +01:00
void openPortableTransmutationGUI(final EntityPlayer p0, final ItemStack p1);
2023-01-03 17:47:36 +01:00
void transmuteBlock(
final ItemStack p0,
final EntityPlayer p1,
final World p2,
final int p3,
final int p4,
final int p5,
final int p6
);
}