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