Added fun spell framework

This commit is contained in:
WayofTime 2014-01-17 19:59:31 -05:00
parent 17bbea0e74
commit e583fe429d
11 changed files with 710 additions and 5 deletions

View file

@ -0,0 +1,21 @@
package WayofTime.alchemicalWizardry.common.spell.complex;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
public class SpellParadigmSelf extends SpellParadigm
{
@Override
public void enhanceParadigm(SpellEnhancement enh)
{
}
@Override
public void castSpell(World world, EntityPlayer entityPlayer, ItemStack itemStack)
{
// TODO Auto-generated method stub
}
}