aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/IRedstoneCircuitBlock.java
diff options
context:
space:
mode:
authorKiwi <42833050+Kiwi233@users.noreply.github.com>2020-05-24 08:28:19 +0800
committerGitHub <noreply@github.com>2020-05-24 08:28:19 +0800
commitf0bce85d3faf040d87a22d83250ae2d9767c3642 (patch)
treeed60c1d975c8b06a27cae03d148714f7bb9e9805 /src/main/java/gregtech/api/interfaces/IRedstoneCircuitBlock.java
parentac7282a30ef161101cabc921e52db5c5d7e0096c (diff)
parentd6c19a9b6434c8a4c59ea8452603f85cfd2ad208 (diff)
downloadGT5-Unofficial-f0bce85d3faf040d87a22d83250ae2d9767c3642.tar.gz
GT5-Unofficial-f0bce85d3faf040d87a22d83250ae2d9767c3642.tar.bz2
GT5-Unofficial-f0bce85d3faf040d87a22d83250ae2d9767c3642.zip
Merge pull request #1 from GTNewHorizons/experimental
5/24
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/IRedstoneCircuitBlock.java')
-rw-r--r--src/main/java/gregtech/api/interfaces/IRedstoneCircuitBlock.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/main/java/gregtech/api/interfaces/IRedstoneCircuitBlock.java b/src/main/java/gregtech/api/interfaces/IRedstoneCircuitBlock.java
index 8838992c62..73a81cc74b 100644
--- a/src/main/java/gregtech/api/interfaces/IRedstoneCircuitBlock.java
+++ b/src/main/java/gregtech/api/interfaces/IRedstoneCircuitBlock.java
@@ -12,55 +12,55 @@ public interface IRedstoneCircuitBlock {
/**
* The Output Direction the Circuit Block is Facing
*/
- public byte getOutputFacing();
+ byte getOutputFacing();
/**
* sets Output Redstone State at Side
*/
- public boolean setRedstone(byte aStrength, byte aSide);
+ boolean setRedstone(byte aStrength, byte aSide);
/**
* returns Output Redstone State at Side
* Note that setRedstone checks if there is a Difference between the old and the new Setting before consuming any Energy
*/
- public byte getOutputRedstone(byte aSide);
+ byte getOutputRedstone(byte aSide);
/**
* returns Input Redstone Signal at Side
*/
- public byte getInputRedstone(byte aSide);
+ byte getInputRedstone(byte aSide);
/**
* If this Side is Covered up and therefor not doing any Redstone
*/
- public GT_CoverBehavior getCover(byte aSide);
+ GT_CoverBehavior getCover(byte aSide);
- public int getCoverID(byte aSide);
+ int getCoverID(byte aSide);
- public int getCoverVariable(byte aSide);
+ int getCoverVariable(byte aSide);
/**
* returns whatever Block-ID is adjacent to the Redstone Circuit Block
*/
- public Block getBlockAtSide(byte aSide);
+ Block getBlockAtSide(byte aSide);
/**
* returns whatever Meta-Value is adjacent to the Redstone Circuit Block
*/
- public byte getMetaIDAtSide(byte aSide);
+ byte getMetaIDAtSide(byte aSide);
/**
* returns whatever TileEntity is adjacent to the Redstone Circuit Block
*/
- public TileEntity getTileEntityAtSide(byte aSide);
+ TileEntity getTileEntityAtSide(byte aSide);
/**
* returns whatever TileEntity is used by the Redstone Circuit Block
*/
- public ICoverable getOwnTileEntity();
+ ICoverable getOwnTileEntity();
/**
* returns worldObj.rand.nextInt(aRange)
*/
- public int getRandom(int aRange);
+ int getRandom(int aRange);
}