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