Uses of Class
net.minecraft.src.EntityItem

Packages that use EntityItem
cpw.mods.fml.common   
cpw.mods.fml.common.modloader   
cpw.mods.fml.common.registry   
net.minecraft.src   
net.minecraftforge.client   
net.minecraftforge.common   
net.minecraftforge.event.entity.living   
net.minecraftforge.event.entity.player   
 

Uses of EntityItem in cpw.mods.fml.common
 

Methods in cpw.mods.fml.common with parameters of type EntityItem
 void IPickupNotifier.notifyPickup(EntityItem item, EntityPlayer player)
           
 

Uses of EntityItem in cpw.mods.fml.common.modloader
 

Methods in cpw.mods.fml.common.modloader with parameters of type EntityItem
 void ModLoaderPickupNotifier.notifyPickup(EntityItem item, EntityPlayer player)
           
 

Uses of EntityItem in cpw.mods.fml.common.registry
 

Methods in cpw.mods.fml.common.registry with parameters of type EntityItem
static void GameRegistry.onPickupNotification(EntityPlayer player, EntityItem item)
           
 

Uses of EntityItem in net.minecraft.src
 

Methods in net.minecraft.src that return EntityItem
 EntityItem Entity.dropItem(int par1, int par2)
          Drops an item stack at the entity's position.
 EntityItem Entity.dropItemWithOffset(int par1, int par2, float par3)
          Drops an item stack with a specified y offset.
 EntityItem EntityClientPlayerMP.dropOneItem()
          Called when player presses the drop item key
 EntityItem EntityPlayer.dropOneItem()
          Called when player presses the drop item key
 EntityItem EntityPlayer.dropPlayerItem(ItemStack par1ItemStack)
          Args: itemstack - called when player drops an item stack that's not in his inventory (like items still placed in a workbench while the workbench'es GUI gets closed)
 EntityItem EntityPlayer.dropPlayerItemWithRandomChoice(ItemStack par1ItemStack, boolean par2)
          Args: itemstack, flag
 EntityItem Entity.entityDropItem(ItemStack par1ItemStack, float par2)
          Drops an item at the position of the entity.
 

Methods in net.minecraft.src with parameters of type EntityItem
 void RenderItem.doRenderItem(EntityItem par1EntityItem, double par2, double par4, double par6, float par8, float par9)
          Renders the item
 boolean EntityItem.func_70289_a(EntityItem par1EntityItem)
           
 

Constructors in net.minecraft.src with parameters of type EntityItem
Packet21PickupSpawn(EntityItem par1EntityItem)
           
 

Uses of EntityItem in net.minecraftforge.client
 

Methods in net.minecraftforge.client with parameters of type EntityItem
static boolean ForgeHooksClient.renderEntityItem(EntityItem entity, ItemStack item, float bobing, float rotation, Random random, RenderEngine engine, RenderBlocks renderBlocks)
           
 

Uses of EntityItem in net.minecraftforge.common
 

Method parameters in net.minecraftforge.common with type arguments of type EntityItem
static boolean ForgeHooks.onLivingDrops(EntityLiving entity, DamageSource source, ArrayList<EntityItem> drops, int lootingLevel, boolean recentlyHit, int specialDropValue)
           
 

Uses of EntityItem in net.minecraftforge.event.entity.living
 

Fields in net.minecraftforge.event.entity.living with type parameters of type EntityItem
 ArrayList<EntityItem> LivingDropsEvent.drops
           
 

Constructor parameters in net.minecraftforge.event.entity.living with type arguments of type EntityItem
LivingDropsEvent(EntityLiving entity, DamageSource source, ArrayList<EntityItem> drops, int lootingLevel, boolean recentlyHit, int specialDropValue)
           
 

Uses of EntityItem in net.minecraftforge.event.entity.player
 

Fields in net.minecraftforge.event.entity.player declared as EntityItem
 EntityItem EntityItemPickupEvent.item
           
 

Constructors in net.minecraftforge.event.entity.player with parameters of type EntityItem
EntityItemPickupEvent(EntityPlayer player, EntityItem item)