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