blob: fe8db2edffd61c8550469fdde4843700987eae49 [file] [log] [blame] [raw]
package ic2.api;
import net.minecraft.src.EntityPlayer;
import net.minecraft.src.ItemStack;
/**
* Armor items implementing this can be considered metal armor.
*
* Currently used for determining which boots can be used to slide up a magnetic pole.
*/
public interface IMetalArmor {
/**
* Determine if the given armor piece is metal armor.
*
* @param itemstack Armor piece as worn by the player
* @param player The player
* @return Whether the armor piece is metal armor
*/
public boolean isMetalArmor(ItemStack itemstack, EntityPlayer player);
}