aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/covers/GT_Cover_Lens.java
blob: 000acc45355a02f96eac7dd476068513e32d2716 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
  }
}