Hbm-s-Nuclear-Tech-GIT/src/main/java/com/hbm/items/IKeybindReceiver.java
2024-09-08 17:45:57 +02:00

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);
}