Example usage for net.minecraftforge.event.entity.living LivingEvent subclass-usage

List of usage examples for net.minecraftforge.event.entity.living LivingEvent subclass-usage

Introduction

In this page you can find the example usage for net.minecraftforge.event.entity.living LivingEvent subclass-usage.

Usage

From source file hellfirepvp.astralsorcery.common.event.EntityKnockbackEvent.java

/**
 * This class is part of the Astral Sorcery Mod
 * The complete source code for this mod can be found on github.
 * Class: EntityKnockbackEvent
 * Created by HellFirePvP
 * Date: 02.12.2016 / 19:03

From source file net.afterchat.mocap.LivingPlaceBlockEvent.java

public class LivingPlaceBlockEvent extends LivingEvent {
    public ItemStack theItem;
    public int xCoord;
    public int yCoord;
    public int zCoord;

From source file org.spongepowered.mod.mixin.event.player.MixinEventPlayer.java

@NonnullByDefault
@Mixin(value = net.minecraftforge.event.entity.player.PlayerEvent.class, remap = false)
public abstract class MixinEventPlayer extends LivingEvent implements PlayerEvent {

    @Shadow
    public EntityPlayer entityPlayer;

From source file stevekung.mods.moreplanets.core.event.PlanetEvents.java

public abstract class PlanetEvents extends LivingEvent {
    public WorldProvider provider;

    public PlanetEvents(EntityLivingBase entity) {
        super(entity);
        this.provider = entity.worldObj.provider;