001package net.minecraftforge.event.entity.living;
002
003import net.minecraft.entity.EntityLiving;
004import net.minecraft.world.World;
005import net.minecraftforge.event.Cancelable;
006
007@Deprecated //Remove next MC Version
008@Cancelable
009public class LivingSpecialSpawnEvent extends LivingEvent
010{
011    public final World world;
012    public final float x;
013    public final float y;
014    public final float z;
015    private boolean handeled = false;
016    
017    public LivingSpecialSpawnEvent(EntityLiving entity, World world, float x, float y, float z)
018    {
019        super(entity);
020        this.world = world;
021        this.x = x;
022        this.y = y;
023        this.z = z;
024    }
025}