BloodMagic/src/main/java/WayofTime/alchemicalWizardry/common/spell/simple/ISimpleSpell.java

17 lines
672 B
Java
Raw Normal View History

package WayofTime.alchemicalWizardry.common.spell.simple;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
public interface ISimpleSpell
{
2015-07-28 17:49:26 +00:00
ItemStack onOffensiveRangedRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer);
2015-07-28 17:49:26 +00:00
ItemStack onOffensiveMeleeRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer);
2015-07-28 17:49:26 +00:00
ItemStack onDefensiveRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer);
2015-07-28 17:49:26 +00:00
ItemStack onEnvironmentalRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer);
}