blob: 6f0235f4d7355c9b3dc42af91294f212c8f529e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package gtPlusPlus.api.thermal.energy;
import net.minecraftforge.common.util.ForgeDirection;
public interface IThermalHandler extends IThermalProvider, IThermalReceiver {
int receiveThermalEnergy(ForgeDirection arg0, int arg1, boolean arg2);
int extractThermalEnergy(ForgeDirection arg0, int arg1, boolean arg2);
int getThermalEnergyStored(ForgeDirection arg0);
int getMaxThermalEnergyStored(ForgeDirection arg0);
}
|