diff options
Diffstat (limited to 'src/main/java/gregtech/common/covers/GT_Cover_Lens.java')
-rw-r--r-- | src/main/java/gregtech/common/covers/GT_Cover_Lens.java | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/main/java/gregtech/common/covers/GT_Cover_Lens.java b/src/main/java/gregtech/common/covers/GT_Cover_Lens.java new file mode 100644 index 0000000000..85f61e8b74 --- /dev/null +++ b/src/main/java/gregtech/common/covers/GT_Cover_Lens.java @@ -0,0 +1,17 @@ +package gregtech.common.covers; + +import gregtech.api.interfaces.tileentity.ICoverable; +import gregtech.api.util.GT_CoverBehavior; + +public class GT_Cover_Lens + extends GT_CoverBehavior { + private final byte mColor; + + public GT_Cover_Lens(byte aColor) { + this.mColor = aColor; + } + + public byte getLensColor(byte aSide, int aCoverID, int aCoverVariable, ICoverable aTileEntity) { + return this.mColor; + } +} |