2014-06-27 23:43:09 +00:00
|
|
|
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);
|
2014-06-27 23:43:09 +00:00
|
|
|
|
2015-07-28 17:49:26 +00:00
|
|
|
ItemStack onOffensiveMeleeRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer);
|
2014-06-27 23:43:09 +00:00
|
|
|
|
2015-07-28 17:49:26 +00:00
|
|
|
ItemStack onDefensiveRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer);
|
2014-06-27 23:43:09 +00:00
|
|
|
|
2015-07-28 17:49:26 +00:00
|
|
|
ItemStack onEnvironmentalRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer);
|
2014-06-27 23:43:09 +00:00
|
|
|
}
|