aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/tileentity/IRedstoneReceiver.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/IRedstoneReceiver.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/IRedstoneReceiver.java')
-rw-r--r--src/main/java/gregtech/api/interfaces/tileentity/IRedstoneReceiver.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/gregtech/api/interfaces/tileentity/IRedstoneReceiver.java b/src/main/java/gregtech/api/interfaces/tileentity/IRedstoneReceiver.java
index f5b0f76bad..8c644be2e6 100644
--- a/src/main/java/gregtech/api/interfaces/tileentity/IRedstoneReceiver.java
+++ b/src/main/java/gregtech/api/interfaces/tileentity/IRedstoneReceiver.java
@@ -10,20 +10,20 @@ public interface IRedstoneReceiver extends IHasWorldObjectAndCoords {
* Do not use this if ICoverable is implemented. ICoverable has @getInternalInputRedstoneSignal for Machine internal Input Redstone
* This returns the true incoming Redstone Signal. Only Cover Behaviors should check it, not MetaTileEntities.
*/
- public byte getInputRedstoneSignal(byte aSide);
+ byte getInputRedstoneSignal(byte aSide);
/**
* gets the strongest Redstone Level the TileEntity receives
*/
- public byte getStrongestRedstone();
+ byte getStrongestRedstone();
/**
* gets if the TileEntity receives Redstone
*/
- public boolean getRedstone();
+ boolean getRedstone();
/**
* gets if the TileEntity receives Redstone at this Side
*/
- public boolean getRedstone(byte aSide);
+ boolean getRedstone(byte aSide);
} \ No newline at end of file