BloodMagic/BM_src/thaumcraft/api/research/IScanEventHandler.java

11 lines
275 B
Java
Raw Normal View History

2014-01-17 19:12:49 +00:00
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);
}