aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/tileentity/IFibreConnected.java
diff options
context:
space:
mode:
authorDream-Master <dream-master@gmx.net>2020-03-17 22:21:40 +0100
committerDream-Master <dream-master@gmx.net>2020-03-17 22:21:40 +0100
commit0f6b03f927b2c482100b2ba46964db72c96156a0 (patch)
tree141bab113db4dbd76f6b3701d876f1c8e3f28b20 /src/main/java/gregtech/api/interfaces/tileentity/IFibreConnected.java
parent28ed289c626555dda9f369780b28651a8c5f442e (diff)
parent5959633bc9eea56859e4e569c2aa8b8a427e5ea2 (diff)
downloadGT5-Unofficial-0f6b03f927b2c482100b2ba46964db72c96156a0.tar.gz
GT5-Unofficial-0f6b03f927b2c482100b2ba46964db72c96156a0.tar.bz2
GT5-Unofficial-0f6b03f927b2c482100b2ba46964db72c96156a0.zip
Merge branch 'Refactor' into Bees
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/tileentity/IFibreConnected.java')
-rw-r--r--src/main/java/gregtech/api/interfaces/tileentity/IFibreConnected.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/java/gregtech/api/interfaces/tileentity/IFibreConnected.java b/src/main/java/gregtech/api/interfaces/tileentity/IFibreConnected.java
index edcf5bdb89..bde86524c5 100644
--- a/src/main/java/gregtech/api/interfaces/tileentity/IFibreConnected.java
+++ b/src/main/java/gregtech/api/interfaces/tileentity/IFibreConnected.java
@@ -7,25 +7,25 @@ public interface IFibreConnected extends IColoredTileEntity, IHasWorldObjectAndC
/**
* If this Blocks accepts Fibre from this Side
*/
- public void inputFibreFrom(byte aSide);
+ void inputFibreFrom(byte aSide);
/**
* If this Blocks emits Fibre to this Side
*/
- public void outputsFibreTo(byte aSide);
+ void outputsFibreTo(byte aSide);
/**
* Sets the Signal this Blocks outputs to this Fibre Color
*/
- public void setFibreOutput(byte aSide, byte aColor, byte aRedstoneStrength);
+ void setFibreOutput(byte aSide, byte aColor, byte aRedstoneStrength);
/**
* Gets the Signal this Blocks outputs to this Fibre Color
*/
- public byte getFibreOutput(byte aSide, byte aColor);
+ byte getFibreOutput(byte aSide, byte aColor);
/**
* Gets the Signal this Blocks receives from this Fibre Color
*/
- public byte getFibreInput(byte aSide, byte aColor);
+ byte getFibreInput(byte aSide, byte aColor);
} \ No newline at end of file