package com.pahimar.ee3.item; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.ItemStack; /** * Equivalent-Exchange-3 * * IKeyBound * * @author pahimar * @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html) * */ public interface IKeyBound { public abstract void doKeyBindingAction(EntityPlayer thePlayer, ItemStack itemStack, String keyBinding); }