Class ItemEvent
- java.lang.Object
-
- net.minecraftforge.eventbus.api.Event
-
- net.minecraftforge.event.entity.EntityEvent
-
- net.minecraftforge.event.entity.item.ItemEvent
-
- Direct Known Subclasses:
ItemExpireEvent
,ItemTossEvent
public class ItemEvent extends EntityEvent
Base class for all EntityItem events. Contains a reference to the EntityItem of interest. For most EntityItem events, there's little to no additional useful data from the firing method that isn't already contained within the EntityItem instance.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class net.minecraftforge.event.entity.EntityEvent
EntityEvent.CanUpdate, EntityEvent.EnteringChunk, EntityEvent.EntityConstructing, EntityEvent.Size
-
-
Field Summary
Fields Modifier and Type Field Description private ItemEntity
entityItem
-
Constructor Summary
Constructors Constructor Description ItemEvent(ItemEntity itemEntity)
Creates a new event for an EntityItem.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ItemEntity
getEntityItem()
The relevant EntityItem for this event, already cast for you.-
Methods inherited from class net.minecraftforge.event.entity.EntityEvent
getEntity
-
-
-
-
Field Detail
-
entityItem
private final ItemEntity entityItem
-
-
Constructor Detail
-
ItemEvent
public ItemEvent(ItemEntity itemEntity)
Creates a new event for an EntityItem.- Parameters:
itemEntity
- The EntityItem for this event
-
-
Method Detail
-
getEntityItem
public ItemEntity getEntityItem()
The relevant EntityItem for this event, already cast for you.
-
-