blob: 14f566c1a734c12fa6507234484e18c3b7257688 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package gtPlusPlus.api.thermal.energy;
import net.minecraft.item.ItemStack;
public interface IThermalContainerItem {
int receiveThermalEnergy(ItemStack arg0, int arg1, boolean arg2);
int extractThermalEnergy(ItemStack arg0, int arg1, boolean arg2);
int getThermalEnergyStored(ItemStack arg0);
int getMaxThermalEnergyStored(ItemStack arg0);
}
|