26 lines
No EOL
645 B
Java
26 lines
No EOL
645 B
Java
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;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/* Location: F:\Torrent\minecraft\jd-gui-0.3.6.windows\gregtech_1.7.10-5.07.07-dev.jar
|
|
|
|
* Qualified Name: gregtech.common.covers.GT_Cover_Lens
|
|
|
|
* JD-Core Version: 0.7.0.1
|
|
|
|
*/ |