From 311ab89f93558233a40079f7cb16605b141b5346 Mon Sep 17 00:00:00 2001 From: Johann Bernhardt Date: Sun, 12 Dec 2021 19:38:06 +0100 Subject: Move sources and resources --- .../xmod/gregtech/api/interfaces/IHeatEntity.java | 26 ---------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/Java/gtPlusPlus/xmod/gregtech/api/interfaces/IHeatEntity.java (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api/interfaces/IHeatEntity.java') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/interfaces/IHeatEntity.java b/src/Java/gtPlusPlus/xmod/gregtech/api/interfaces/IHeatEntity.java deleted file mode 100644 index 824bb258d8..0000000000 --- a/src/Java/gtPlusPlus/xmod/gregtech/api/interfaces/IHeatEntity.java +++ /dev/null @@ -1,26 +0,0 @@ -package gtPlusPlus.xmod.gregtech.api.interfaces; - -import ic2.api.energy.tile.IHeatSource; -import net.minecraftforge.common.util.ForgeDirection; - -public interface IHeatEntity extends IHeatSource, IHeatSink { - - public int getHeatBuffer(); - - public void setHeatBuffer(int HeatBuffer); - - public void addtoHeatBuffer(int heat); - - public int getTransmitHeat(); - - public int fillHeatBuffer(int maxAmount); - - public int getMaxHeatEmittedPerTick(); - - public void updateHeatEntity(); - - public int maxrequestHeatTick(ForgeDirection directionFrom); - - public int requestHeat(ForgeDirection directionFrom, int requestheat); - -} -- cgit