blob: b870d0c9840330c9afdf9b626e5aae0f1b5b4993 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package gregtech.nei.dumper;
import gregtech.api.interfaces.modularui.IControllerWithOptionalFeatures;
public class VoidProtectionSupportDumper extends MultiBlockFeatureSupportDumper {
public VoidProtectionSupportDumper() {
super("void_protection", IControllerWithOptionalFeatures::supportsVoidProtection);
}
}
|