aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/api/thermal/energy/IThermalContainerItem.java
blob: 072695bd76ac3c39c7d98a9d2731e5b60f457b48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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);
	
}