001package net.minecraftforge.common;
002
003import net.minecraft.entity.player.EntityPlayer;
004import net.minecraft.item.ItemStack;
005import net.minecraft.world.World;
006
007/**
008 * A simple interface to receive ticks from armor items when placed in armor slots.
009 *
010 * @author cpw
011 *
012 */
013public interface ITickingArmor {
014    void onArmorTickUpdate(World worldObj, EntityPlayer player, ItemStack itemStack);
015}