2014-01-17 14:12:49 -05:00
|
|
|
package thaumcraft.api.research;
|
|
|
|
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
2014-01-17 21:05:38 +00:00
|
|
|
public interface IScanEventHandler {
|
2014-01-17 14:12:49 -05:00
|
|
|
ScanResult scanPhenomena(ItemStack stack, World world, EntityPlayer player);
|
|
|
|
}
|