mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-02-21 21:42:28 +00:00
15 lines
411 B
Java
15 lines
411 B
Java
package api.hbm.energy;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public interface IBatteryItem {
|
|
|
|
public void chargeBattery(ItemStack stack, long i);
|
|
public void setCharge(ItemStack stack, long i);
|
|
public void dischargeBattery(ItemStack stack, long i);
|
|
public long getCharge(ItemStack stack);
|
|
public long getMaxCharge();
|
|
public long getChargeRate();
|
|
public long getDischargeRate();
|
|
}
|