18 lines
492 B
Java
18 lines
492 B
Java
package net.minecraftforge.event.entity.living;
|
|
|
|
import net.minecraft.util.DamageSource;
|
|
import net.minecraft.entity.EntityLiving;
|
|
import net.minecraftforge.event.Cancelable;
|
|
|
|
@Cancelable
|
|
public class LivingAttackEvent extends LivingEvent
|
|
{
|
|
public final DamageSource source;
|
|
public final int ammount;
|
|
public LivingAttackEvent(EntityLiving entity, DamageSource source, int ammount)
|
|
{
|
|
super(entity);
|
|
this.source = source;
|
|
this.ammount = ammount;
|
|
}
|
|
}
|