ForgePatch/common/net/minecraftforge/event/entity/player/EntityItemPickupEvent.java

23 lines
479 B
Java
Raw Normal View History

package net.minecraftforge.event.entity.player;
import net.minecraft.src.Entity;
import net.minecraft.src.EntityItem;
import net.minecraft.src.EntityPlayer;
public class EntityItemPickupEvent extends PlayerEvent
{
public final EntityItem item;
public EntityItemPickupEvent(EntityPlayer player, EntityItem item)
{
super(player);
this.item = item;
}
@Override
public boolean isCancelable()
{
return true;
}
}