aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/api/thermal/energy/IThermalStorage.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gtPlusPlus/api/thermal/energy/IThermalStorage.java')
-rw-r--r--src/main/java/gtPlusPlus/api/thermal/energy/IThermalStorage.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/main/java/gtPlusPlus/api/thermal/energy/IThermalStorage.java b/src/main/java/gtPlusPlus/api/thermal/energy/IThermalStorage.java
new file mode 100644
index 0000000000..db3e6c8966
--- /dev/null
+++ b/src/main/java/gtPlusPlus/api/thermal/energy/IThermalStorage.java
@@ -0,0 +1,13 @@
+package gtPlusPlus.api.thermal.energy;
+
+public interface IThermalStorage {
+
+ int receiveThermalEnergy(int arg0, boolean arg1);
+
+ int extractThermalEnergy(int arg0, boolean arg1);
+
+ int getThermalEnergyStored();
+
+ int getMaxThermalEnergyStored();
+
+} \ No newline at end of file