2012-08-07 08:24:06 +00:00
|
|
|
package net.minecraftforge.event.entity.living;
|
|
|
|
|
2013-06-30 12:50:11 +00:00
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
2012-08-07 08:24:06 +00:00
|
|
|
import net.minecraftforge.event.Cancelable;
|
|
|
|
|
|
|
|
@Cancelable
|
|
|
|
public class LivingFallEvent extends LivingEvent
|
|
|
|
{
|
|
|
|
public float distance;
|
2013-06-30 12:50:11 +00:00
|
|
|
public LivingFallEvent(EntityLivingBase entity, float distance)
|
2012-08-07 08:24:06 +00:00
|
|
|
{
|
|
|
|
super(entity);
|
|
|
|
this.distance = distance;
|
|
|
|
}
|
|
|
|
}
|