mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
15 lines
389 B
Java
15 lines
389 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();
|
|
}
|