GT5-Unofficial/src/main/java/gregtech/common/covers/GT_Cover_Blastproof.java

22 lines
546 B
Java
Raw Normal View History

2015-06-23 15:29:05 -07:00
package gregtech.common.covers;
import gregtech.api.interfaces.tileentity.ICoverable;
import gregtech.api.util.GT_CoverBehavior;
public class GT_Cover_Blastproof
2015-10-21 22:06:25 -04:00
extends GT_CoverBehavior {
private final float mLevel;
public GT_Cover_Blastproof(float aLevel) {
this.mLevel = aLevel;
}
public float getBlastProofLevel(byte aSide, int aCoverID, int aCoverVariable, ICoverable aTileEntity) {
return this.mLevel;
}
public boolean isSimpleCover() {
return true;
}
2015-06-23 15:29:05 -07:00
}