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