2014-11-13 09:24:29 -05:00
|
|
|
package WayofTime.alchemicalWizardry.api.spell;
|
2014-06-27 19:43:09 -04:00
|
|
|
|
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
2014-10-13 22:33:20 +02:00
|
|
|
public interface ILeftClickEffect
|
2014-06-27 19:43:09 -04:00
|
|
|
{
|
2014-10-13 22:33:20 +02:00
|
|
|
public abstract int onLeftClickEntity(ItemStack stack, EntityLivingBase attacked, EntityLivingBase weilder);
|
2014-06-27 19:43:09 -04:00
|
|
|
}
|