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