diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-04-29 12:55:19 +1000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-04-29 12:55:19 +1000 |
commit | 4109c9575dd6d8a89f03e1242493dca228255570 (patch) | |
tree | cb71094617867ee843efb5ad1c456286f2269f4a /src/Java/gtPlusPlus/api/thermal/energy/IThermalHandler.java | |
parent | 47d2b68b66fb9958b57c3ff81f1e73e8f6afd91b (diff) | |
download | GT5-Unofficial-4109c9575dd6d8a89f03e1242493dca228255570.tar.gz GT5-Unofficial-4109c9575dd6d8a89f03e1242493dca228255570.tar.bz2 GT5-Unofficial-4109c9575dd6d8a89f03e1242493dca228255570.zip |
+ Added Framework for Thermal power based upon the code used for RF.
> This is more effective than trying to use the GT EU code for the exact same thing.
Diffstat (limited to 'src/Java/gtPlusPlus/api/thermal/energy/IThermalHandler.java')
-rw-r--r-- | src/Java/gtPlusPlus/api/thermal/energy/IThermalHandler.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/api/thermal/energy/IThermalHandler.java b/src/Java/gtPlusPlus/api/thermal/energy/IThermalHandler.java new file mode 100644 index 0000000000..3ab7127757 --- /dev/null +++ b/src/Java/gtPlusPlus/api/thermal/energy/IThermalHandler.java @@ -0,0 +1,15 @@ +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); + +}
\ No newline at end of file |