BloodMagic/src/main/java/WayofTime/bloodmagic/client/IKeybindable.java

10 lines
278 B
Java
Raw Normal View History

package WayofTime.bloodmagic.client;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
public interface IKeybindable
{
void onKeyPressed(ItemStack stack, EntityPlayer player, KeyBindingBloodMagic.KeyBindings key, boolean showInChat);
}