mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
18 lines
447 B
Java
18 lines
447 B
Java
package api.hbm.item;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public interface IButtonReceiver {
|
|
|
|
/**
|
|
* Called in ModEventHandlerClient for any keyboard input related to this item
|
|
* @param stack
|
|
* @param player
|
|
*/
|
|
@SideOnly(Side.CLIENT)
|
|
public void handleKeyboardInput(ItemStack stack, EntityPlayer player);
|
|
}
|