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