BiomesOPlenty/apis/thaumcraft/api/research/IScanEventHandler.java

10 lines
281 B
Java
Raw Normal View History

package thaumcraft.api.research;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
public interface IScanEventHandler {
ScanResult scanPhenomena(ItemStack stack, World world, EntityPlayer player);
}