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