2015-06-23 22:29:05 +00:00
|
|
|
package gregtech.common.covers;
|
|
|
|
|
|
|
|
import gregtech.api.interfaces.tileentity.ICoverable;
|
|
|
|
import gregtech.api.util.GT_CoverBehavior;
|
|
|
|
|
|
|
|
public class GT_Cover_Lens
|
2015-10-22 02:06:25 +00:00
|
|
|
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;
|
|
|
|
}
|
2015-06-23 22:29:05 +00:00
|
|
|
}
|