summaryrefslogtreecommitdiff
path: root/src/api/java/thaumcraft/api/research/IScanEventHandler.java
blob: 219cb5dbfc3b7a8de2a83e06d352540b896d056b (plain)
1
2
3
4
5
6
7
8
9
10
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);
}