diff options
author | Martin Robertz <dream-master@gmx.net> | 2020-03-19 17:12:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-19 17:12:47 +0100 |
commit | 4bdccb94802098bf9248e419c51861640fc0f1c1 (patch) | |
tree | d03af88ec036dcb897c5a845369b345aeed3c97f /src/main/java/gregtech/api/interfaces/tileentity/IExperimentalEnergyTileEntity.java | |
parent | feca5739287583eee824512ff61714ae4113a6fc (diff) | |
parent | 5959633bc9eea56859e4e569c2aa8b8a427e5ea2 (diff) | |
download | GT5-Unofficial-4bdccb94802098bf9248e419c51861640fc0f1c1.tar.gz GT5-Unofficial-4bdccb94802098bf9248e419c51861640fc0f1c1.tar.bz2 GT5-Unofficial-4bdccb94802098bf9248e419c51861640fc0f1c1.zip |
Merge pull request #251 from GTNewHorizons/Refactor
Refactor
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/tileentity/IExperimentalEnergyTileEntity.java')
-rw-r--r-- | src/main/java/gregtech/api/interfaces/tileentity/IExperimentalEnergyTileEntity.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/gregtech/api/interfaces/tileentity/IExperimentalEnergyTileEntity.java b/src/main/java/gregtech/api/interfaces/tileentity/IExperimentalEnergyTileEntity.java index 7e86701f6b..3a32a557fb 100644 --- a/src/main/java/gregtech/api/interfaces/tileentity/IExperimentalEnergyTileEntity.java +++ b/src/main/java/gregtech/api/interfaces/tileentity/IExperimentalEnergyTileEntity.java @@ -25,22 +25,22 @@ public interface IExperimentalEnergyTileEntity extends IColoredTileEntity, IHasW * @param aSide 0 - 5 = Vanilla Directions of YOUR Block the Energy gets inserted to. 6 = No specific Side (don't do Side checks for this Side) * @return amount of used Amperes. 0 if not accepted anything. */ - public long injectEnergy(SubTag aEnergyType, byte aSide, long aPrimary, long aSecondary); + long injectEnergy(SubTag aEnergyType, byte aSide, long aPrimary, long aSecondary); /** * Sided Energy Input */ - public boolean inputEnergyFrom(SubTag aEnergyType, byte aSide); + boolean inputEnergyFrom(SubTag aEnergyType, byte aSide); /** * Sided Energy Output */ - public boolean outputsEnergyTo(SubTag aEnergyType, byte aSide); + boolean outputsEnergyTo(SubTag aEnergyType, byte aSide); /** * Utility for the Network */ - public static class Util { + class Util { public static int RF_PER_EU = 4; private static boolean RF_ENERGY = false, IC_ENERGY = false, CHECK_ALL = true; |