2014-02-14 20:20:20 +00:00
|
|
|
package WayofTime.alchemicalWizardry.common.summoning;
|
|
|
|
|
2014-05-04 22:11:09 +00:00
|
|
|
import WayofTime.alchemicalWizardry.api.summoningRegistry.SummoningHelper;
|
2014-02-14 20:20:20 +00:00
|
|
|
import WayofTime.alchemicalWizardry.common.entity.mob.EntityFallenAngel;
|
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
|
|
|
public class SummoningFallenAngel extends SummoningHelper
|
|
|
|
{
|
|
|
|
public SummoningFallenAngel(int id)
|
|
|
|
{
|
|
|
|
super(id);
|
|
|
|
// TODO Auto-generated constructor stub
|
|
|
|
}
|
|
|
|
|
|
|
|
public EntityLivingBase getEntity(World worldObj)
|
|
|
|
{
|
|
|
|
return new EntityFallenAngel(worldObj);
|
|
|
|
}
|
|
|
|
}
|