aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/api/thermal/energy/IThermalStorage.java
blob: db3e6c89662767017b2a0c44ce7cdd290c7d9347 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package gtPlusPlus.api.thermal.energy;

public interface IThermalStorage {
	
	int receiveThermalEnergy(int arg0, boolean arg1);

	int extractThermalEnergy(int arg0, boolean arg1);

	int getThermalEnergyStored();

	int getMaxThermalEnergyStored();
	
}