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