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

public interface IThermalStorage {

    int receiveThermalEnergy(int arg0, boolean arg1);

    int extractThermalEnergy(int arg0, boolean arg1);

    int getThermalEnergyStored();

    int getMaxThermalEnergyStored();
}