aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/nei/dumper/RecipeLockingSupportDumper.java
blob: 0c901e49eb45acdfe6acaae397ff12f3ea3650b8 (plain)
1
2
3
4
5
6
7
8
9
10
package gregtech.nei.dumper;

import gregtech.api.interfaces.modularui.IControllerWithOptionalFeatures;

public class RecipeLockingSupportDumper extends MultiBlockFeatureSupportDumper {

    public RecipeLockingSupportDumper() {
        super("recipe_locking", IControllerWithOptionalFeatures::supportsSingleRecipeLocking);
    }
}