equivalent-exchange-3/src/main/java/com/pahimar/ee3/util/IChargeable.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

17 lines
431 B
Java

package com.pahimar.ee3.util;
import net.minecraft.item.ItemStack;
public interface IChargeable
{
public abstract short getMaxChargeLevel();
public abstract short getChargeLevel(ItemStack itemStack);
public abstract void setChargeLevel(ItemStack itemStack, short chargeLevel);
public abstract void increaseChargeLevel(ItemStack itemStack);
public abstract void decreaseChargeLevel(ItemStack itemStack);
}