blob: 5a8306abee1948212ddd045195de7b23928662ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package gtPlusPlus.xmod.gregtech.loaders.misc;
import gregtech.api.util.GTPP_Recipe;
import gregtech.api.util.GT_ProcessingArray_Manager;
public class AddCustomMachineToPA {
public static void register() {
// Simple Washers
GT_ProcessingArray_Manager.addRecipeMapToPA(
"simplewasher.01", GTPP_Recipe.GTPP_Recipe_Map.sSimpleWasherRecipes);
}
}
|