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