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 | 23 |
1 files changed, 10 insertions, 13 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 index 000acc4535..5f7c9903aa 100644 --- a/src/main/java/gregtech/common/covers/GT_Cover_Lens.java +++ b/src/main/java/gregtech/common/covers/GT_Cover_Lens.java @@ -4,17 +4,14 @@ 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;
- }
+ 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;
+ }
}
|