equivalent-exchange-3/src/main/java/com/pahimar/ee3/util/IKeyBound.java
Pahimar 24a2ae35bc Move some interfaces into the util package
Remove the client configuration
Work on configuration
Implement bspkrs graphical configuration system
2014-07-18 15:55:10 -04:00

11 lines
289 B
Java

package com.pahimar.ee3.util;
import com.pahimar.ee3.reference.Key;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
public interface IKeyBound
{
public abstract void doKeyBindingAction(EntityPlayer entityPlayer, ItemStack itemStack, Key key);
}