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/IThermalContainerItem.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/IThermalContainerItem.java')
-rw-r--r-- | src/Java/gtPlusPlus/api/thermal/energy/IThermalContainerItem.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/api/thermal/energy/IThermalContainerItem.java b/src/Java/gtPlusPlus/api/thermal/energy/IThermalContainerItem.java new file mode 100644 index 0000000000..072695bd76 --- /dev/null +++ b/src/Java/gtPlusPlus/api/thermal/energy/IThermalContainerItem.java @@ -0,0 +1,15 @@ +package gtPlusPlus.api.thermal.energy; + +import net.minecraft.item.ItemStack; + +public interface IThermalContainerItem { + + int receiveThermalEnergy(ItemStack arg0, int arg1, boolean arg2); + + int extractThermalEnergy(ItemStack arg0, int arg1, boolean arg2); + + int getThermalEnergyStored(ItemStack arg0); + + int getMaxThermalEnergyStored(ItemStack arg0); + +}
\ No newline at end of file |