mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
13 lines
394 B
Java
13 lines
394 B
Java
package com.hbm.items;
|
|
|
|
import com.hbm.handler.HbmKeybinds.EnumKeybind;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public interface IKeybindReceiver {
|
|
|
|
public boolean canHandleKeybind(EntityPlayer player, ItemStack stack, EnumKeybind keybind);
|
|
public void handleKeybind(EntityPlayer player, ItemStack stack, EnumKeybind keybind, boolean state);
|
|
}
|